Completed
Push — dev ( 38969c...e9d5f9 )
by Marc
13:15
created
src/Http/Controllers/BaseModelController.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -262,6 +262,7 @@
 block discarded – undo
262 262
     /**
263 263
      * @param $validator
264 264
      * @param string $route
265
+     * @param integer $id
265 266
      * @return $this
266 267
      */
267 268
     protected function redirect($validator, $route, $id = null)
Please login to merge, or discard this patch.
src/Http/Controllers/ModelController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -123,7 +123,7 @@
 block discarded – undo
123 123
     /**
124 124
      * Display the specified post.
125 125
      *
126
-     * @return Response
126
+     * @return ModelController
127 127
      */
128 128
     public function all($modelName, $data = null, $sort = null)
129 129
     {
Please login to merge, or discard this patch.
src/Http/Controllers/UserController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -157,7 +157,7 @@
 block discarded – undo
157 157
     }
158 158
 
159 159
     /**
160
-     * @return \Illuminate\Database\Eloquent\Model|null|static
160
+     * @return \Illuminate\Database\Eloquent\Model|null
161 161
      */
162 162
     protected function getUser()
163 163
     {
Please login to merge, or discard this patch.
src/Model/FakeModel.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,6 @@
 block discarded – undo
40 40
 
41 41
     /**
42 42
      * @param $table
43
-     * @param null $primaryKey
44 43
      * @return static
45 44
      */
46 45
     public function setup($config)
Please login to merge, or discard this patch.
src/Options/PluginOption.php 1 patch
Doc Comments   +1 added lines, -4 removed lines patch added patch discarded remove patch
@@ -26,7 +26,6 @@  discard block
 block discarded – undo
26 26
     }
27 27
 
28 28
     /**
29
-     * @param string $plugin
30 29
      * @param string $key
31 30
      */
32 31
     public function get($key = null, $configFile = null)
@@ -35,7 +34,6 @@  discard block
 block discarded – undo
35 34
     }
36 35
 
37 36
     /**
38
-     * @param string $plugin
39 37
      */
40 38
     public function has($key = '', $configFile = null)
41 39
     {
@@ -43,7 +41,6 @@  discard block
 block discarded – undo
43 41
     }
44 42
 
45 43
     /**
46
-     * @param string $plugin
47 44
      */
48 45
     public function set($key, $value, $configFile = null)
49 46
     {
@@ -60,7 +57,7 @@  discard block
 block discarded – undo
60 57
 
61 58
     /**
62 59
      * @param null $configFile
63
-     * @return null|string
60
+     * @return string
64 61
      */
65 62
     protected function getFile($configFile = null)
66 63
     {
Please login to merge, or discard this patch.
src/Permit/ModelPermit.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -30,6 +30,9 @@
 block discarded – undo
30 30
         return self::hasPermission($model_permissions, self::getRole());
31 31
     }
32 32
 
33
+    /**
34
+     * @param string|null $route
35
+     */
33 36
     public static function routeAction($route)
34 37
     {
35 38
         $route_permission = AdminOption::get('models.route_permission');
Please login to merge, or discard this patch.
src/Extension/AbstractExtension.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,6 @@
 block discarded – undo
68 68
     }
69 69
 
70 70
     /**
71
-     * @param array $routes
72 71
      */
73 72
     public function isInstalled()
74 73
     {
Please login to merge, or discard this patch.
src/Model/Model.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -189,7 +189,7 @@
 block discarded – undo
189 189
 
190 190
     /**
191 191
      * @param $model
192
-     * @return bool
192
+     * @return null|boolean
193 193
      */
194 194
     protected function isCurrent($modelName)
195 195
     {
Please login to merge, or discard this patch.
src/Fields/FieldFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
 
59 59
     /**
60 60
      * @param $field Relation
61
-     * @return mixed
61
+     * @return \Mascame\Formality\Field\FieldInterface
62 62
      */
63 63
     public function completeRelation($field) {
64 64
         $relationship = $field->getOption('relationship', []);
Please login to merge, or discard this patch.