Completed
Push — master ( d97162...d58d53 )
by Dennis
10:08
created
Classes/Command/SeederCommandController.php 1 patch
Doc Comments   +5 added lines, -4 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
     }
84 84
 
85 85
     /**
86
-     * @param $tableName
86
+     * @param string $tableName
87 87
      * @return array
88 88
      * @throws \Exception
89 89
      */
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
     }
177 177
 
178 178
     /**
179
-     * @param $question
179
+     * @param string $question
180 180
      * @param $defaultValue
181 181
      * @param null $choices
182 182
      * @return array|int|string
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
     }
224 224
 
225 225
     /**
226
-     * @param $string
226
+     * @param string $string
227 227
      */
228 228
     protected function outputAndExit($string)
229 229
     {
@@ -237,6 +237,7 @@  discard block
 block discarded – undo
237 237
      * @param string $namespace
238 238
      * @param string $className
239 239
      * @param array $informations
240
+     * @param string $tableName
240 241
      * @return string
241 242
      */
242 243
     protected function getSeederClass($namespace, $className, $tableName, $informations)
@@ -257,7 +258,7 @@  discard block
 block discarded – undo
257 258
 
258 259
     /**
259 260
      * @param string $className
260
-     * @return bool|string
261
+     * @return false|string
261 262
      */
262 263
     protected function resolveSeederClass($className)
263 264
     {
Please login to merge, or discard this patch.
Classes/Domain/Model/Column/Inline.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@
 block discarded – undo
112 112
     /**
113 113
      * getForeignField
114 114
      *
115
-     * @return mixed
115
+     * @return string
116 116
      */
117 117
     public function getForeignField()
118 118
     {
Please login to merge, or discard this patch.
Classes/Domain/Model/Column/Input.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
     }
65 65
 
66 66
     /**
67
-     * @return int
67
+     * @return string
68 68
      */
69 69
     public function getMax()
70 70
     {
Please login to merge, or discard this patch.
Classes/Information.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
     public function setDefaultValue($defaultValue);
56 56
 
57 57
     /**
58
-     * @return array
58
+     * @return void
59 59
      */
60 60
     public function getChoices();
61 61
 
Please login to merge, or discard this patch.
Classes/Information/DefaultInformation.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
     protected $question = 'Enter a type for %s';
40 40
 
41 41
     /**
42
-     * @return int
42
+     * @return string
43 43
      */
44 44
     public function getDefaultValue()
45 45
     {
Please login to merge, or discard this patch.
Classes/Information/HiddenInformation.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
     }
48 48
 
49 49
     /**
50
-     * @return array
50
+     * @return string[]
51 51
      */
52 52
     public function getChoices()
53 53
     {
Please login to merge, or discard this patch.
Classes/Provider.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -10,5 +10,8 @@
 block discarded – undo
10 10
  */
11 11
 interface Provider
12 12
 {
13
+    /**
14
+     * @return string
15
+     */
13 16
     public function generate();
14 17
 }
Please login to merge, or discard this patch.
Classes/Factory/SeederFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
     /**
61 61
      * @param $name
62 62
      * @param int $limit
63
-     * @return Seeder\SeedCollection|mixed
63
+     * @return Seeder\SeedCollection
64 64
      */
65 65
     public function make($name, $limit = 1)
66 66
     {
Please login to merge, or discard this patch.
Classes/Seed.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,13 +69,13 @@
 block discarded – undo
69 69
 
70 70
     /**
71 71
      * @param array $properties
72
-     * @return mixed
72
+     * @return void
73 73
      */
74 74
     public function set(array $properties);
75 75
 
76 76
     /**
77 77
      * @param bool $isExecuted
78
-     * @return mixed
78
+     * @return boolean
79 79
      */
80 80
     public function isExecuted($isExecuted);
81 81
 }
Please login to merge, or discard this patch.