@@ -265,7 +265,7 @@ discard block |
||
265 | 265 | /** |
266 | 266 | * Run a truncate statement on the table. |
267 | 267 | * |
268 | - * @return void |
|
268 | + * @return boolean |
|
269 | 269 | */ |
270 | 270 | public function truncate() |
271 | 271 | { |
@@ -415,7 +415,7 @@ discard block |
||
415 | 415 | * |
416 | 416 | * @param mixed $columns |
417 | 417 | * |
418 | - * @return int |
|
418 | + * @return boolean |
|
419 | 419 | */ |
420 | 420 | public function drop($columns) |
421 | 421 | { |
@@ -434,7 +434,6 @@ discard block |
||
434 | 434 | /** |
435 | 435 | * Add a "group by" clause to the query. |
436 | 436 | * |
437 | - * @param array|string $column,... |
|
438 | 437 | * |
439 | 438 | * @return $this |
440 | 439 | */ |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | /** |
36 | 36 | * Indicate that the table needs to be created. |
37 | 37 | * |
38 | - * @return bool |
|
38 | + * @return boolean|null |
|
39 | 39 | */ |
40 | 40 | public function create() |
41 | 41 | { |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | /** |
48 | 48 | * Indicate that the collection should be dropped. |
49 | 49 | * |
50 | - * @return bool |
|
50 | + * @return boolean|null |
|
51 | 51 | */ |
52 | 52 | public function drop() |
53 | 53 | { |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | * @param string $table |
42 | 42 | * @param Closure $callback |
43 | 43 | * |
44 | - * @return bool |
|
44 | + * @return boolean|null |
|
45 | 45 | */ |
46 | 46 | public function create($table, Closure $callback = null) |
47 | 47 | { |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | * |
58 | 58 | * @param string $table |
59 | 59 | * |
60 | - * @return bool |
|
60 | + * @return boolean|null |
|
61 | 61 | */ |
62 | 62 | public function drop($table) |
63 | 63 | { |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | * @param string $table |
73 | 73 | * @param Closure $callback |
74 | 74 | * |
75 | - * @return bool |
|
75 | + * @return boolean|null |
|
76 | 76 | */ |
77 | 77 | public function table($table, Closure $callback) |
78 | 78 | { |
@@ -22,7 +22,7 @@ |
||
22 | 22 | /** |
23 | 23 | * Create a new migration install command instance. |
24 | 24 | * |
25 | - * @param duxet\Rethinkdb\Migrations\MigrationCreator $creator |
|
25 | + * @param MigrationCreator $creator |
|
26 | 26 | * @param \Illuminate\Foundation\Composer $composer |
27 | 27 | * |
28 | 28 | * @return void |