@@ -6,7 +6,6 @@ |
||
6 | 6 | use Alpha\Util\Config\ConfigProvider; |
7 | 7 | use Alpha\Util\Http\Request; |
8 | 8 | use Alpha\Util\Http\Response; |
9 | -use Alpha\Util\Http\Session\SessionProviderFactory; |
|
10 | 9 | use Alpha\View\View; |
11 | 10 | use Alpha\Controller\Front\FrontController; |
12 | 11 |
@@ -297,7 +297,7 @@ discard block |
||
297 | 297 | /** |
298 | 298 | * Get the record for this controller (if any). |
299 | 299 | * |
300 | - * @return mixed |
|
300 | + * @return ActiveRecord |
|
301 | 301 | * |
302 | 302 | * @since 1.0 |
303 | 303 | */ |
@@ -632,7 +632,7 @@ discard block |
||
632 | 632 | /** |
633 | 633 | * Getter for the unit of work MAX duration. |
634 | 634 | * |
635 | - * @return int |
|
635 | + * @return Integer |
|
636 | 636 | * |
637 | 637 | * @since 1.0 |
638 | 638 | */ |
@@ -1179,7 +1179,7 @@ discard block |
||
1179 | 1179 | /** |
1180 | 1180 | * Generates the two security fields to prevent remote form processing. |
1181 | 1181 | * |
1182 | - * @return array An array containing the two fields |
|
1182 | + * @return string[] An array containing the two fields |
|
1183 | 1183 | * |
1184 | 1184 | * @since 1.0 |
1185 | 1185 | */ |
@@ -1432,6 +1432,7 @@ discard block |
||
1432 | 1432 | * @since 2.0 |
1433 | 1433 | * |
1434 | 1434 | * @throws \Alpha\Exception\NotImplementedException |
1435 | + * @param Request $request |
|
1435 | 1436 | */ |
1436 | 1437 | public function doHEAD($request) |
1437 | 1438 | { |
@@ -1444,6 +1445,7 @@ discard block |
||
1444 | 1445 | * @since 2.0 |
1445 | 1446 | * |
1446 | 1447 | * @throws \Alpha\Exception\NotImplementedException |
1448 | + * @param Request $request |
|
1447 | 1449 | */ |
1448 | 1450 | public function doGET($request) |
1449 | 1451 | { |
@@ -1456,6 +1458,7 @@ discard block |
||
1456 | 1458 | * @since 2.0 |
1457 | 1459 | * |
1458 | 1460 | * @throws \Alpha\Exception\NotImplementedException |
1461 | + * @param Request $request |
|
1459 | 1462 | */ |
1460 | 1463 | public function doPOST($request) |
1461 | 1464 | { |
@@ -1468,6 +1471,7 @@ discard block |
||
1468 | 1471 | * @since 2.0 |
1469 | 1472 | * |
1470 | 1473 | * @throws \Alpha\Exception\NotImplementedException |
1474 | + * @param Request $request |
|
1471 | 1475 | */ |
1472 | 1476 | public function doPUT($request) |
1473 | 1477 | { |
@@ -1480,6 +1484,7 @@ discard block |
||
1480 | 1484 | * @since 2.0 |
1481 | 1485 | * |
1482 | 1486 | * @throws \Alpha\Exception\NotImplementedException |
1487 | + * @param Request $request |
|
1483 | 1488 | */ |
1484 | 1489 | public function doPATCH($request) |
1485 | 1490 | { |
@@ -1492,6 +1497,7 @@ discard block |
||
1492 | 1497 | * @since 2.0 |
1493 | 1498 | * |
1494 | 1499 | * @throws \Alpha\Exception\NotImplementedException |
1500 | + * @param Request $request |
|
1495 | 1501 | */ |
1496 | 1502 | public function doDELETE($request) |
1497 | 1503 | { |
@@ -1502,6 +1508,7 @@ discard block |
||
1502 | 1508 | * {@inheritdoc} |
1503 | 1509 | * |
1504 | 1510 | * @since 2.0 |
1511 | + * @param Request $request |
|
1505 | 1512 | */ |
1506 | 1513 | public function doOPTIONS($request) |
1507 | 1514 | { |
@@ -1529,6 +1536,7 @@ discard block |
||
1529 | 1536 | * {@inheritdoc} |
1530 | 1537 | * |
1531 | 1538 | * @since 2.0.2 |
1539 | + * @param Request $request |
|
1532 | 1540 | */ |
1533 | 1541 | public function doTRACE($request) |
1534 | 1542 | { |
@@ -454,7 +454,7 @@ |
||
454 | 454 | * Custom version of the check rights method that only checks for a session for the config admin username/password, |
455 | 455 | * when the system database is not set-up. |
456 | 456 | * |
457 | - * @return bool |
|
457 | + * @return boolean|null |
|
458 | 458 | * |
459 | 459 | * @since 1.0 |
460 | 460 | */ |
@@ -63,7 +63,7 @@ |
||
63 | 63 | * A static method that attempts to return a CacheProviderInterface instance |
64 | 64 | * based on the name of the provider class supplied. |
65 | 65 | * |
66 | - * @param $providerName The class name of the provider class (fully qualified). |
|
66 | + * @param string $providerName The class name of the provider class (fully qualified). |
|
67 | 67 | * |
68 | 68 | * @throws \Alpha\Exception\IllegalArguementException |
69 | 69 | * |
@@ -63,7 +63,7 @@ |
||
63 | 63 | * A static method that attempts to return a HighlightProviderInterface instance |
64 | 64 | * based on the name of the provider class supplied. |
65 | 65 | * |
66 | - * @param $providerName The fully-qualified class name of the provider class, should implement Alpha\Util\Code\Highlight\HighlightProviderInterface |
|
66 | + * @param string $providerName The fully-qualified class name of the provider class, should implement Alpha\Util\Code\Highlight\HighlightProviderInterface |
|
67 | 67 | * |
68 | 68 | * @throws \Alpha\Exception\IllegalArguementException |
69 | 69 | * |
@@ -63,11 +63,11 @@ |
||
63 | 63 | * A static method that attempts to return a EmailProviderInterface instance |
64 | 64 | * based on the name of the provider class supplied. |
65 | 65 | * |
66 | - * @param $providerName The class name of the provider class (fully qualified). |
|
66 | + * @param string $providerName The class name of the provider class (fully qualified). |
|
67 | 67 | * |
68 | 68 | * @throws \Alpha\Exception\IllegalArguementException |
69 | 69 | * |
70 | - * @return \Alpha\Util\Http\Email\EmailProviderInterface |
|
70 | + * @return EmailProviderInterface|null |
|
71 | 71 | * |
72 | 72 | * @since 2.0 |
73 | 73 | */ |
@@ -300,7 +300,7 @@ discard block |
||
300 | 300 | * @param string $key The key to search for |
301 | 301 | * @param mixed $default If key is not found, return this instead |
302 | 302 | * |
303 | - * @return mixed |
|
303 | + * @return string |
|
304 | 304 | * |
305 | 305 | * @since 2.0 |
306 | 306 | */ |
@@ -391,7 +391,7 @@ discard block |
||
391 | 391 | * @param string $key The key to search for |
392 | 392 | * @param mixed $default If key is not found, return this instead |
393 | 393 | * |
394 | - * @return mixed |
|
394 | + * @return string |
|
395 | 395 | * |
396 | 396 | * @since 2.0 |
397 | 397 | */ |
@@ -63,7 +63,7 @@ |
||
63 | 63 | * A static method that attempts to return a SessionProviderInterface instance |
64 | 64 | * based on the name of the provider class supplied. |
65 | 65 | * |
66 | - * @param $providerName The class name of the provider class (fully qualified). |
|
66 | + * @param string $providerName The class name of the provider class (fully qualified). |
|
67 | 67 | * |
68 | 68 | * @throws \Alpha\Exception\IllegalArguementException |
69 | 69 | * |
@@ -63,7 +63,7 @@ |
||
63 | 63 | * A static method that attempts to return a SearchProviderInterface instance |
64 | 64 | * based on the name of the provider class supplied. |
65 | 65 | * |
66 | - * @param $providerName The class name of the provider class, should be fully-qualified. |
|
66 | + * @param string $providerName The class name of the provider class, should be fully-qualified. |
|
67 | 67 | * |
68 | 68 | * @throws \Alpha\Exception\IllegalArguementException; |
69 | 69 | * |