Completed
Push — master ( 69f35d...17039b )
by Chris
12s
created
src/AbstractContainer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 
23 23
     public function dump()
24 24
     {
25
-        $lines = array_map(function (DumpableInterface $dumper) {
25
+        $lines = array_map(function(DumpableInterface $dumper) {
26 26
             return $dumper->dump();
27 27
         }, $this->getComponents());
28 28
 
Please login to merge, or discard this patch.
src/Segments.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -143,7 +143,7 @@
 block discarded – undo
143 143
 
144 144
     public function dump()
145 145
     {
146
-        $lines = array_map(function (Segment $segment) {
146
+        $lines = array_map(function(Segment $segment) {
147 147
             return $segment->dump();
148 148
         }, $this->segments);
149 149
 
Please login to merge, or discard this patch.
src/KeyTags.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@
 block discarded – undo
101 101
 
102 102
     public function dump()
103 103
     {
104
-        return implode("\n", array_map(function (Tag\KeyTag $tag) {
104
+        return implode("\n", array_map(function(Tag\KeyTag $tag) {
105 105
             return $tag->dump();
106 106
         }, $this->tags));
107 107
     }
Please login to merge, or discard this patch.
src/Tag/ProgramDateTimeTag.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
     }
36 36
 
37 37
     /**
38
-     * @return \DateTime
38
+     * @return string
39 39
      */
40 40
     public function getProgramDateTime()
41 41
     {
Please login to merge, or discard this patch.
src/Tag/StreamInfTag.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -39,6 +39,7 @@  discard block
 block discarded – undo
39 39
 
40 40
     /**
41 41
      * @param string
42
+     * @param integer $programId
42 43
      *
43 44
      * @return self
44 45
      */
@@ -59,6 +60,7 @@  discard block
 block discarded – undo
59 60
 
60 61
     /**
61 62
      * @param string
63
+     * @param integer $bandwidth
62 64
      *
63 65
      * @return self
64 66
      */
@@ -79,6 +81,7 @@  discard block
 block discarded – undo
79 81
 
80 82
     /**
81 83
      * @param string
84
+     * @param string $resolution
82 85
      *
83 86
      * @return self
84 87
      */
@@ -99,6 +102,7 @@  discard block
 block discarded – undo
99 102
 
100 103
     /**
101 104
      * @param string
105
+     * @param string[] $codecs
102 106
      *
103 107
      * @return self
104 108
      */
Please login to merge, or discard this patch.