Completed
Pull Request — develop (#27)
by Chris
01:48
created
src/Dumper/Dumper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
             $this->tagDefinitions->getHeadProperties(),
33 33
             $data,
34 34
             $lines,
35
-            function (TagDefinition $tagDefinition) {
35
+            function(TagDefinition $tagDefinition) {
36 36
                 if ('master-playlist' === $tagDefinition->getCategory()) {
37 37
                     $this->isMasterPlaylist = true;
38 38
                 }
Please login to merge, or discard this patch.
resources/definitions/attributeValueParsers.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
     'hexadecimal-sequence' => 'strval',
12 12
     'decimal-floating-point' => 'floatval',
13 13
     'signed-decimal-floating-point' => 'floatval',
14
-    'quoted-string' => function ($value) {
14
+    'quoted-string' => function($value) {
15 15
         return trim($value, '"');
16 16
     },
17 17
     'enumerated-string' => 'strval',
Please login to merge, or discard this patch.
resources/definitions/attributeValueDumpers.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
     'hexadecimal-sequence' => 'strval',
20 20
     'decimal-floating-point' => 'strval',
21 21
     'signed-decimal-floating-point' => 'strval',
22
-    'quoted-string' => function ($value) {
22
+    'quoted-string' => function($value) {
23 23
         return sprintf('%s', $value);
24 24
     },
25 25
     'enumerated-string' => 'strval',
Please login to merge, or discard this patch.