summaryrefslogtreecommitdiff
path: root/src/HTML5/Parser/Scanner.php
diff options
context:
space:
mode:
authorAsmir Mustafic <[email protected]>2014-06-17 09:32:43 +0200
committerAsmir Mustafic <[email protected]>2014-06-17 09:32:43 +0200
commit7b0931fb5bcc5fdf75bd0b8202bd992c388997e7 (patch)
tree38b1cd87d19d244a4e9a258f6ee51be7d3a9e43c /src/HTML5/Parser/Scanner.php
parent44f07f1f7ec5b995a5279eb4f61ea0dbb0cb616e (diff)
PSR-2 formatting
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;
}
/**