Skip to content
Snippets Groups Projects
Commit 2a450a07 authored by Jared Hancock's avatar Jared Hancock
Browse files

lint: Fix undefined variable error

parent c2d838a2
Branches
Tags
No related merge requests found
...@@ -186,6 +186,7 @@ class HtmlInlineElement { ...@@ -186,6 +186,7 @@ class HtmlInlineElement {
function render($width, $options) { function render($width, $options) {
$output = ''; $output = '';
$after_block = false;
$this->ws = $this->getStyle('white-space', 'normal'); $this->ws = $this->getStyle('white-space', 'normal');
foreach ($this->children as $c) { foreach ($this->children as $c) {
if ($c instanceof DOMText) { if ($c instanceof DOMText) {
......
...@@ -31,6 +31,7 @@ class ReflectionClass { ...@@ -31,6 +31,7 @@ class ReflectionClass {
class DomNode { class DomNode {
function hasChildNodes() {} function hasChildNodes() {}
function removeChild() {}
} }
class DomNodeList { class DomNodeList {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment