Completed
Push — master ( 8fb123...deadbc )
by Philip
03:58
created
src/CRUDlex/YamlReader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
             'whitespace' => false,
73 73
             'recursion.detect' => false
74 74
         ]);
75
-        $cache      = '<?php $crudlexCacheContent = '.$contentPHP.';';
75
+        $cache = '<?php $crudlexCacheContent = '.$contentPHP.';';
76 76
         file_put_contents($this->getCacheFile($fileName), $cache);
77 77
     }
78 78
 
Please login to merge, or discard this patch.
src/CRUDlex/AbstractData.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
      * Enriches an entity with metadata:
88 88
      * id, version, created_at, updated_at
89 89
      *
90
-     * @param mixed $id
90
+     * @param string|null $id
91 91
      * the id of the entity to enrich
92 92
      * @param Entity $entity
93 93
      * the entity to enrich
Please login to merge, or discard this patch.
src/CRUDlex/EntityDefinition.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -721,7 +721,7 @@
 block discarded – undo
721 721
      * the name of the field
722 722
      * @param string $key
723 723
      * the value of the key
724
-     * @param mixed $value
724
+     * @param string $value
725 725
      * the new value
726 726
      */
727 727
     public function setField($name, $key, $value)
Please login to merge, or discard this patch.
src/CRUDlex/Controller.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -203,7 +203,7 @@
 block discarded – undo
203 203
      * @param array $filterOperators
204 204
      * reference, will hold a map of fields to operators for AbstractData::listEntries()
205 205
      *
206
-     * @return array
206
+     * @return string
207 207
      * the raw filter query parameters
208 208
      */
209 209
     protected function buildUpListFilter(Request $request, EntityDefinition $definition, &$filter, &$filterActive, &$filterToUse, &$filterOperators)
Please login to merge, or discard this patch.
src/CRUDlex/Entity.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@
 block discarded – undo
122 122
             return null;
123 123
         }
124 124
 
125
-        $type  = $this->definition->getType($field);
125
+        $type = $this->definition->getType($field);
126 126
         return $this->toType($this->entity[$field], $type);
127 127
     }
128 128
 
Please login to merge, or discard this patch.