Completed
Pull Request — develop (#27)
by Chris
13:09
created
src/Parser/PlaylistBuilder.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -39,6 +39,9 @@
 block discarded – undo
39 39
         $this->callComponentSetter($segment, $metadata, $value);
40 40
     }
41 41
 
42
+    /**
43
+     * @param string $uri
44
+     */
42 45
     public function addUri($uri)
43 46
     {
44 47
         if ($this->playlist instanceof PlaylistCopyableInterface) {
Please login to merge, or discard this patch.
src/Parser/Parser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
     {
74 74
         $attrMetadatas = new AttributeMetadatas($class);
75 75
         $attrTag = new $class();
76
-        $this->parseAttributeListValue($value, function ($key, $val) use ($attrTag, $attrMetadatas) {
76
+        $this->parseAttributeListValue($value, function($key, $val) use ($attrTag, $attrMetadatas) {
77 77
             if (!$attrMetadatas->get($key)) {
78 78
                 return;
79 79
             }
Please login to merge, or discard this patch.