@@ -112,7 +112,7 @@ |
||
| 112 | 112 | /** |
| 113 | 113 | * getForeignField |
| 114 | 114 | * |
| 115 | - * @return mixed |
|
| 115 | + * @return string |
|
| 116 | 116 | */ |
| 117 | 117 | public function getForeignField() |
| 118 | 118 | { |
@@ -64,7 +64,7 @@ |
||
| 64 | 64 | } |
| 65 | 65 | |
| 66 | 66 | /** |
| 67 | - * @return int |
|
| 67 | + * @return string |
|
| 68 | 68 | */ |
| 69 | 69 | public function getMax() |
| 70 | 70 | { |
@@ -55,7 +55,7 @@ |
||
| 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 | |
@@ -39,7 +39,7 @@ |
||
| 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 | { |
@@ -47,7 +47,7 @@ |
||
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | /** |
| 50 | - * @return array |
|
| 50 | + * @return string[] |
|
| 51 | 51 | */ |
| 52 | 52 | public function getChoices() |
| 53 | 53 | { |
@@ -10,5 +10,8 @@ |
||
| 10 | 10 | */ |
| 11 | 11 | interface Provider |
| 12 | 12 | { |
| 13 | + /** |
|
| 14 | + * @return string |
|
| 15 | + */ |
|
| 13 | 16 | public function generate(); |
| 14 | 17 | } |
@@ -60,7 +60,7 @@ |
||
| 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 | { |
@@ -69,13 +69,13 @@ |
||
| 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 | } |
@@ -43,9 +43,9 @@ |
||
| 43 | 43 | public function create($name, $limit = 1); |
| 44 | 44 | |
| 45 | 45 | /** |
| 46 | - * @param $name |
|
| 46 | + * @param string $name |
|
| 47 | 47 | * @param int $limit |
| 48 | - * @return mixed |
|
| 48 | + * @return SeedCollection |
|
| 49 | 49 | */ |
| 50 | 50 | public function make($name, $limit = 1); |
| 51 | 51 | } |