Completed
Branch master (798b64)
by Stefan
02:32
created
src/JsonStreamParser/Decoder.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -77,6 +77,9 @@
 block discarded – undo
77 77
 		}
78 78
 	}
79 79
 
80
+	/**
81
+	 * @param string $char
82
+	 */
80 83
 	public function whitespace($char)
81 84
 	{
82 85
 	}
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 namespace JsonStreamParser;
4 4
 
5 5
 use JsonStreamParser\Decoder\Element;
Please login to merge, or discard this patch.
src/JsonStreamParser/Configuration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 namespace JsonStreamParser;
4 4
 
5 5
 /**
Please login to merge, or discard this patch.
src/JsonStreamParser/JsonDefinition.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 namespace JsonStreamParser;
4 4
 
5 5
 /**
Please login to merge, or discard this patch.
src/JsonStreamParser/JsonStreamParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace JsonStreamParser;
5 5
 
Please login to merge, or discard this patch.
src/JsonStreamParser/Buffer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 namespace JsonStreamParser;
4 4
 
5 5
 /**
Please login to merge, or discard this patch.
src/JsonStreamParser/Decoder/Element.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 namespace JsonStreamParser\Decoder;
4 4
 
5 5
 /**
Please login to merge, or discard this patch.
src/JsonStreamParser/Exception/ParseException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 namespace JsonStreamParser\Exception;
4 4
 
5 5
 /**
Please login to merge, or discard this patch.