summaryrefslogtreecommitdiffstats
path: root/src/UtfString.php
diff options
context:
space:
mode:
authorMaurício Meneghini Fauth <mauriciofauth@gmail.com>2019-01-16 18:07:19 -0200
committerMaurício Meneghini Fauth <mauriciofauth@gmail.com>2019-01-16 18:07:19 -0200
commit17da8a34b81442524a8e01fead7b5968fa1cc39d (patch)
treeaf443eb31a13b3c4461a3322e10d376571f6d3b6 /src/UtfString.php
parent86c5baebda24c1721fb6881df8671a3c7df60e8b (diff)
downloadsql-parser-17da8a34b81442524a8e01fead7b5968fa1cc39d.zip
sql-parser-17da8a34b81442524a8e01fead7b5968fa1cc39d.tar.gz
sql-parser-17da8a34b81442524a8e01fead7b5968fa1cc39d.tar.bz2
Enable strict mode on PHP files
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
Diffstat (limited to 'src/UtfString.php')
-rw-r--r--src/UtfString.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/UtfString.php b/src/UtfString.php
index 58905f3..9e6e55b 100644
--- a/src/UtfString.php
+++ b/src/UtfString.php
@@ -1,5 +1,4 @@
<?php
-
/**
* Implementation for UTF-8 strings.
*
@@ -10,6 +9,7 @@
* Because the lexer relies on the subscript operator this class had to be
* implemented.
*/
+declare(strict_types=1);
namespace PhpMyAdmin\SqlParser;