Completed
Push — v2 ( e81eda...b3c0e1 )
by Joschi
04:43
created
src/Micrometa/Infrastructure/Factory/AlternateFactory.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,6 @@
 block discarded – undo
49 49
     /**
50 50
      * Create alternate resource declaration from parser results
51 51
      *
52
-     * @param array[] $rels Parser results
53 52
      * @return Alternate[] Alternate resource declarations
54 53
      */
55 54
     public static function createFromParserResult(array $alternates)
Please login to merge, or discard this patch.
src/Micrometa/Infrastructure/Factory/MicroformatsFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
     protected static function createTypes(array $types)
90 90
     {
91 91
         return array_map(
92
-            function ($type) {
92
+            function($type) {
93 93
                 return (object)['profile' => self::MF2_PROFILE_URI, 'name' => $type];
94 94
             }, $types
95 95
         );
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
     protected static function createProperty(array $propertyValues)
124 124
     {
125 125
         return array_map(
126
-            function ($propertyValue) {
126
+            function($propertyValue) {
127 127
                 if (is_array($propertyValue)) {
128 128
                     return isset($propertyValue['type']) ? self::createItem($propertyValue) : $propertyValue;
129 129
                 }
Please login to merge, or discard this patch.
src/Micrometa/Domain/Item/PropertyList.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
     /**
185 185
      * Return whether a property exists
186 186
      *
187
-     * @param \stdClass|string $iri IRI
187
+     * @param \stdClass $iri IRI
188 188
      * @return boolean Property exists
189 189
      */
190 190
     public function offsetExists($iri)
@@ -197,7 +197,7 @@  discard block
 block discarded – undo
197 197
     /**
198 198
      * Set a particular property
199 199
      *
200
-     * @param \stdClass|string $iri IRI
200
+     * @param \stdClass $iri IRI
201 201
      * @param array $value Property values
202 202
      */
203 203
     public function offsetSet($iri, $value)
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -183,7 +183,7 @@
 block discarded – undo
183 183
             return;
184 184
         }
185 185
 
186
-        $propertyValues =& $this->offsetGet($iri);
186
+        $propertyValues = & $this->offsetGet($iri);
187 187
         $propertyValues = array_merge($propertyValues, $values);
188 188
     }
189 189
 
Please login to merge, or discard this patch.
src/Micrometa/Application/Item/Item.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -112,14 +112,14 @@
 block discarded – undo
112 112
         return (object)[
113 113
             'format' => $this->getFormat(),
114 114
             'types' => array_map(
115
-                function ($type) {
115
+                function($type) {
116 116
                     return $type->profile.$type->name;
117 117
                 },
118 118
                 $this->getType()
119 119
             ),
120 120
             'properties' => $this->getProperties()->export(),
121 121
             'items' => array_map(
122
-                function (ItemInterface $item) {
122
+                function(ItemInterface $item) {
123 123
                     return $item->export();
124 124
                 },
125 125
                 $this->getChildren()
Please login to merge, or discard this patch.
src/Micrometa/Application/Item/PropertyList.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
             $profiledName = $iri->profile.$iri->name;
107 107
             $cursor = $this->nameToCursor[$profiledName];
108 108
             $propertyList[$profiledName] = array_map(
109
-                function (ExportableInterface $value) {
109
+                function(ExportableInterface $value) {
110 110
                     return $value->export();
111 111
                 }, $this->values[$cursor]
112 112
             );
Please login to merge, or discard this patch.
src/Micrometa/Ports/Item/ItemList.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -160,6 +160,7 @@
 block discarded – undo
160 160
      * Return the first item, optionally of particular types
161 161
      *
162 162
      * @param array ...$types Item types
163
+     * @param string $types
163 164
      * @return ItemInterface Item
164 165
      * @throws OutOfBoundsException If there are no matching items
165 166
      * @api
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
     {
149 149
         return (object)[
150 150
             'items' => array_map(
151
-                function (ItemInterface $item) {
151
+                function(ItemInterface $item) {
152 152
                     return $item->toObject();
153 153
                 }, $this->items
154 154
             )
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
         if (count($types)) {
192 192
             return array_filter(
193 193
                 $this->items,
194
-                function (ItemInterface $item) use ($types) {
194
+                function(ItemInterface $item) use ($types) {
195 195
                     return $item->isOfType(...$types);
196 196
                 }
197 197
             );
Please login to merge, or discard this patch.
src/Micrometa/Ports/Item/Item.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -163,7 +163,7 @@
 block discarded – undo
163 163
      * Return whether an aliased item type in contained in a set of query types
164 164
      *
165 165
      * @param string $profile Type profile
166
-     * @param array $names Aliased type names
166
+     * @param string[] $names Aliased type names
167 167
      * @param ProfiledNamesList $types Query types
168 168
      * @return bool Item type is contained in the set of query types
169 169
      */
Please login to merge, or discard this patch.