@@ -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 | { |
@@ -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 | */ |
@@ -384,7 +384,7 @@ discard block |
||
| 384 | 384 | /** |
| 385 | 385 | * Determine if the Model Admin has Viewing Capabilities. |
| 386 | 386 | * |
| 387 | - * @return bool |
|
| 387 | + * @return null|boolean |
|
| 388 | 388 | */ |
| 389 | 389 | public function hasViewing() |
| 390 | 390 | { |
@@ -394,7 +394,7 @@ discard block |
||
| 394 | 394 | /** |
| 395 | 395 | * Determine if the Model Admin has Creating Capabilities. |
| 396 | 396 | * |
| 397 | - * @return bool |
|
| 397 | + * @return null|boolean |
|
| 398 | 398 | */ |
| 399 | 399 | public function hasCreating() |
| 400 | 400 | { |
@@ -404,7 +404,7 @@ discard block |
||
| 404 | 404 | /** |
| 405 | 405 | * Determine if the Model Admin has Cloning Capabilities. |
| 406 | 406 | * |
| 407 | - * @return bool |
|
| 407 | + * @return null|boolean |
|
| 408 | 408 | */ |
| 409 | 409 | public function hasCloning() |
| 410 | 410 | { |
@@ -414,7 +414,7 @@ discard block |
||
| 414 | 414 | /** |
| 415 | 415 | * Determine if the Model Admin has Editting Capabilities. |
| 416 | 416 | * |
| 417 | - * @return bool |
|
| 417 | + * @return null|boolean |
|
| 418 | 418 | */ |
| 419 | 419 | public function hasEditting() |
| 420 | 420 | { |
@@ -424,7 +424,7 @@ discard block |
||
| 424 | 424 | /** |
| 425 | 425 | * Determine if the Model Admin has Deleting Capabilities. |
| 426 | 426 | * |
| 427 | - * @return bool |
|
| 427 | + * @return null|boolean |
|
| 428 | 428 | */ |
| 429 | 429 | public function hasDeleting() |
| 430 | 430 | { |
@@ -457,7 +457,7 @@ discard block |
||
| 457 | 457 | /** |
| 458 | 458 | * Determine if the Model Admin has Validating Capabilities. |
| 459 | 459 | * |
| 460 | - * @return bool |
|
| 460 | + * @return null|boolean |
|
| 461 | 461 | */ |
| 462 | 462 | public function hasValidating() |
| 463 | 463 | { |
@@ -479,7 +479,7 @@ discard block |
||
| 479 | 479 | * |
| 480 | 480 | * @param string $trait |
| 481 | 481 | * |
| 482 | - * @return boolean |
|
| 482 | + * @return null|boolean |
|
| 483 | 483 | */ |
| 484 | 484 | public function hasTrait($trait = null) |
| 485 | 485 | { |
@@ -497,7 +497,7 @@ discard block |
||
| 497 | 497 | * |
| 498 | 498 | * @param string $contract |
| 499 | 499 | * |
| 500 | - * @return boolean |
|
| 500 | + * @return boolean|null |
|
| 501 | 501 | */ |
| 502 | 502 | public function hasContract($contract = null) |
| 503 | 503 | { |
@@ -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 | */ |
@@ -44,7 +44,7 @@ |
||
| 44 | 44 | * Attempt to reformat the current attribute items array |
| 45 | 45 | * into the most usable format (an Attribute Collection). |
| 46 | 46 | * |
| 47 | - * @return void |
|
| 47 | + * @return AttributeCollection |
|
| 48 | 48 | */ |
| 49 | 49 | public function formatFields() |
| 50 | 50 | { |