@@ -98,7 +98,7 @@ |
||
98 | 98 | /** |
99 | 99 | * Returns the Application Instance. |
100 | 100 | * |
101 | - * @return mixed |
|
101 | + * @return \Illuminate\Foundation\Application |
|
102 | 102 | */ |
103 | 103 | public function app() |
104 | 104 | { |
@@ -127,7 +127,7 @@ |
||
127 | 127 | /** |
128 | 128 | * Returns the path to a provided file within the Flare package. |
129 | 129 | * |
130 | - * @param bool $fiepath |
|
130 | + * @param bool $filepath |
|
131 | 131 | * |
132 | 132 | * @return string |
133 | 133 | */ |
@@ -237,7 +237,6 @@ |
||
237 | 237 | /** |
238 | 238 | * Process Restore ModelItem Request. |
239 | 239 | * |
240 | - * @param int $page_id |
|
241 | 240 | * |
242 | 241 | * @return \Illuminate\Http\RedirectResponse |
243 | 242 | */ |
@@ -33,6 +33,7 @@ |
||
33 | 33 | * Create a new collection. |
34 | 34 | * |
35 | 35 | * @param mixed $items |
36 | + * @param ModelAdmin $modelManager |
|
36 | 37 | */ |
37 | 38 | public function __construct($items = [], $modelManager = null) |
38 | 39 | { |
@@ -138,6 +138,7 @@ |
||
138 | 138 | /** |
139 | 139 | * Performs the Model Query |
140 | 140 | * |
141 | + * @param boolean $count |
|
141 | 142 | * @return \Illuminate\Database\Eloquent\Collection |
142 | 143 | */ |
143 | 144 | private function query($count) |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | /** |
75 | 75 | * Log the user. |
76 | 76 | * |
77 | - * @return \Illuminate\Http\RedirectReponse |
|
77 | + * @return \Illuminate\Http\RedirectResponse |
|
78 | 78 | */ |
79 | 79 | public function getLogout() |
80 | 80 | { |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | * panel.If they do no, they will be sent |
118 | 118 | * to the homepage of the website. |
119 | 119 | * |
120 | - * @return \Illuminate\Http\RedirectReponse |
|
120 | + * @return \Illuminate\Http\RedirectResponse |
|
121 | 121 | */ |
122 | 122 | protected function loginRedirect() |
123 | 123 | { |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | /** |
75 | 75 | * Log the user. |
76 | 76 | * |
77 | - * @return \Illuminate\Http\RedirectReponse |
|
77 | + * @return \Illuminate\Http\RedirectResponse |
|
78 | 78 | */ |
79 | 79 | public function getLogout() |
80 | 80 | { |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | * panel.If they do no, they will be sent |
118 | 118 | * to the homepage of the website. |
119 | 119 | * |
120 | - * @return \Illuminate\Http\RedirectReponse |
|
120 | + * @return \Illuminate\Http\RedirectResponse |
|
121 | 121 | */ |
122 | 122 | protected function loginRedirect() |
123 | 123 | { |
@@ -358,7 +358,7 @@ discard block |
||
358 | 358 | /** |
359 | 359 | * Returns an array of Attribute Fields ready for output. |
360 | 360 | * |
361 | - * @return array |
|
361 | + * @return AttributeCollection |
|
362 | 362 | */ |
363 | 363 | public function outputFields() |
364 | 364 | { |
@@ -443,7 +443,7 @@ discard block |
||
443 | 443 | /** |
444 | 444 | * Determine if the Model Admin has Viewing Capabilities. |
445 | 445 | * |
446 | - * @return bool |
|
446 | + * @return null|boolean |
|
447 | 447 | */ |
448 | 448 | public function hasViewing() |
449 | 449 | { |
@@ -453,7 +453,7 @@ discard block |
||
453 | 453 | /** |
454 | 454 | * Determine if the Model Admin has Creating Capabilities. |
455 | 455 | * |
456 | - * @return bool |
|
456 | + * @return null|boolean |
|
457 | 457 | */ |
458 | 458 | public function hasCreating() |
459 | 459 | { |
@@ -463,7 +463,7 @@ discard block |
||
463 | 463 | /** |
464 | 464 | * Determine if the Model Admin has Cloning Capabilities. |
465 | 465 | * |
466 | - * @return bool |
|
466 | + * @return null|boolean |
|
467 | 467 | */ |
468 | 468 | public function hasCloning() |
469 | 469 | { |
@@ -473,7 +473,7 @@ discard block |
||
473 | 473 | /** |
474 | 474 | * Determine if the Model Admin has Editting Capabilities. |
475 | 475 | * |
476 | - * @return bool |
|
476 | + * @return null|boolean |
|
477 | 477 | */ |
478 | 478 | public function hasEditting() |
479 | 479 | { |
@@ -483,7 +483,7 @@ discard block |
||
483 | 483 | /** |
484 | 484 | * Determine if the Model Admin has Deleting Capabilities. |
485 | 485 | * |
486 | - * @return bool |
|
486 | + * @return null|boolean |
|
487 | 487 | */ |
488 | 488 | public function hasDeleting() |
489 | 489 | { |
@@ -516,7 +516,7 @@ discard block |
||
516 | 516 | /** |
517 | 517 | * Determine if the Model Admin has Validating Capabilities. |
518 | 518 | * |
519 | - * @return bool |
|
519 | + * @return null|boolean |
|
520 | 520 | */ |
521 | 521 | public function hasValidating() |
522 | 522 | { |
@@ -538,7 +538,7 @@ discard block |
||
538 | 538 | * |
539 | 539 | * @param string $trait |
540 | 540 | * |
541 | - * @return bool |
|
541 | + * @return null|boolean |
|
542 | 542 | */ |
543 | 543 | public function hasTrait($trait = null) |
544 | 544 | { |
@@ -554,7 +554,7 @@ discard block |
||
554 | 554 | * |
555 | 555 | * @param string $contract |
556 | 556 | * |
557 | - * @return bool |
|
557 | + * @return boolean|null |
|
558 | 558 | */ |
559 | 559 | public function hasContract($contract = null) |
560 | 560 | { |