summaryrefslogtreecommitdiff
path: root/src/HTML5/Parser/Scanner.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/HTML5/Parser/Scanner.php')
-rw-r--r--src/HTML5/Parser/Scanner.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/HTML5/Parser/Scanner.php b/src/HTML5/Parser/Scanner.php
index a262004..a92c608 100644
--- a/src/HTML5/Parser/Scanner.php
+++ b/src/HTML5/Parser/Scanner.php
@@ -17,8 +17,8 @@ class Scanner
protected $is;
- // Flipping this to TRUE will give minisculely more debugging info.
- public $debug = FALSE;
+ // Flipping this to true will give minisculely more debugging info.
+ public $debug = false;
/**
* Create a new Scanner.
@@ -67,7 +67,7 @@ class Scanner
return $this->is->current();
}
- return FALSE;
+ return false;
}
/**
@@ -83,7 +83,7 @@ class Scanner
return $this->is->current();
}
- return FALSE;
+ return false;
}
/**