@@ -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 | { |
@@ -74,7 +74,7 @@ |
||
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 | { |
@@ -98,7 +98,7 @@ |
||
98 | 98 | /** |
99 | 99 | * Returns the Application Instance. |
100 | 100 | * |
101 | - * @return mixed |
|
101 | + * @return Application |
|
102 | 102 | */ |
103 | 103 | public function app() |
104 | 104 | { |
@@ -527,7 +527,7 @@ discard block |
||
527 | 527 | /** |
528 | 528 | * Determine if the Model Admin has Viewing Capabilities. |
529 | 529 | * |
530 | - * @return bool |
|
530 | + * @return null|boolean |
|
531 | 531 | */ |
532 | 532 | public function hasViewing() |
533 | 533 | { |
@@ -598,7 +598,7 @@ discard block |
||
598 | 598 | /** |
599 | 599 | * Determine if the Model Admin has Validating Capabilities. |
600 | 600 | * |
601 | - * @return bool |
|
601 | + * @return null|boolean |
|
602 | 602 | */ |
603 | 603 | public function hasValidating() |
604 | 604 | { |
@@ -620,7 +620,7 @@ discard block |
||
620 | 620 | * |
621 | 621 | * @param string $trait |
622 | 622 | * |
623 | - * @return bool |
|
623 | + * @return null|boolean |
|
624 | 624 | */ |
625 | 625 | public function hasTrait($trait = null) |
626 | 626 | { |
@@ -636,7 +636,7 @@ discard block |
||
636 | 636 | * |
637 | 637 | * @param string $contract |
638 | 638 | * |
639 | - * @return bool |
|
639 | + * @return boolean|null |
|
640 | 640 | */ |
641 | 641 | public function hasContract($contract = null) |
642 | 642 | { |
@@ -29,7 +29,6 @@ |
||
29 | 29 | /** |
30 | 30 | * Register any application authentication / authorization services. |
31 | 31 | * |
32 | - * @param \Illuminate\Contracts\Auth\Access\Gate $gate |
|
33 | 32 | */ |
34 | 33 | public function boot() |
35 | 34 | { |
@@ -139,6 +139,7 @@ |
||
139 | 139 | /** |
140 | 140 | * Performs the Model Query. |
141 | 141 | * |
142 | + * @param boolean $count |
|
142 | 143 | * @return \Illuminate\Database\Eloquent\Collection |
143 | 144 | */ |
144 | 145 | private function query($count) |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | /** |
85 | 85 | * Log the user. |
86 | 86 | * |
87 | - * @return \Illuminate\Http\RedirectReponse |
|
87 | + * @return \Illuminate\Http\RedirectResponse |
|
88 | 88 | */ |
89 | 89 | public function getLogout() |
90 | 90 | { |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | * panel. If they do no, they will be sent |
122 | 122 | * to the homepage of the website. |
123 | 123 | * |
124 | - * @return \Illuminate\Http\RedirectReponse |
|
124 | + * @return \Illuminate\Http\RedirectResponse |
|
125 | 125 | */ |
126 | 126 | protected function loginRedirect() |
127 | 127 | { |