Completed
Push — master ( e8370f...323a8d )
by Philip
04:02
created
src/CRUDlex/EntityDefinition.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -141,7 +141,7 @@
 block discarded – undo
141 141
      * the name of the field
142 142
      * @param string $key
143 143
      * the value of the key
144
-     * @param mixed $value
144
+     * @param string|boolean $value
145 145
      * the new value
146 146
      */
147 147
     protected function setFieldValue($name, $key, $value) {
Please login to merge, or discard this patch.
src/CRUDlex/MySQLData.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -184,7 +184,7 @@
 block discarded – undo
184 184
         $manyFields = [];
185 185
         foreach ($filter as $field => $value) {
186 186
             if ($this->definition->getType($field) === 'many') {
187
-                $manyFields[]= $field;
187
+                $manyFields[] = $field;
188 188
                 continue;
189 189
             }
190 190
             if ($value === null) {
Please login to merge, or discard this patch.