@@ -75,6 +75,7 @@ discard block |
||
| 75 | 75 | } |
| 76 | 76 | |
| 77 | 77 | /** |
| 78 | + * @param string $code |
|
| 78 | 79 | */ |
| 79 | 80 | public function setActionCode($code) { |
| 80 | 81 | $this->actionCode = $code; |
@@ -89,6 +90,7 @@ discard block |
||
| 89 | 90 | |
| 90 | 91 | /** |
| 91 | 92 | * @param int |
| 93 | + * @param string $seconds |
|
| 92 | 94 | */ |
| 93 | 95 | public function setEstimatedTime($seconds) { |
| 94 | 96 | $this->estimatedTime = $seconds; |
@@ -963,7 +963,7 @@ discard block |
||
| 963 | 963 | * @param array $data |
| 964 | 964 | * @param Form $form |
| 965 | 965 | * |
| 966 | - * @return bool|HTMLText|SS_HTTPResponse |
|
| 966 | + * @return SS_HTTPResponse|null |
|
| 967 | 967 | */ |
| 968 | 968 | public function doCreateEnvironment($data, Form $form) { |
| 969 | 969 | $this->setCurrentActionType(self::ACTION_ENVIRONMENTS); |
@@ -2351,7 +2351,7 @@ discard block |
||
| 2351 | 2351 | /** |
| 2352 | 2352 | * Create project action. |
| 2353 | 2353 | * |
| 2354 | - * @return SS_HTTPResponse |
|
| 2354 | + * @return HTMLText |
|
| 2355 | 2355 | */ |
| 2356 | 2356 | public function createproject(SS_HTTPRequest $request) { |
| 2357 | 2357 | if($this->canCreateProjects()) { |
@@ -1,7 +1,7 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Base class for the APINouns |
|
| 4 | - */ |
|
| 3 | + * Base class for the APINouns |
|
| 4 | + */ |
|
| 5 | 5 | class APINoun extends Controller { |
| 6 | 6 | |
| 7 | 7 | /** |
@@ -1,7 +1,7 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Surface Filesystem::sync() as a dev task in case CMS has not been included. |
|
| 4 | - */ |
|
| 3 | + * Surface Filesystem::sync() as a dev task in case CMS has not been included. |
|
| 4 | + */ |
|
| 5 | 5 | class CMSFilesystemSyncTask extends BuildTask { |
| 6 | 6 | public function run($request = null) { |
| 7 | 7 | Filesystem::sync(); |
@@ -1,11 +1,11 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Dispatcher provides functionality to make it easier to work with frontend React components. |
|
| 4 | - * See deploynaut/docs/dispatcher.md for more information. |
|
| 5 | - * |
|
| 6 | - * @todo: currently we can't have more than one component mounted in parallel on any given Dispatcher, |
|
| 7 | - * because the SecurityID will diverge as soon as one of these components submit. |
|
| 8 | - */ |
|
| 3 | + * Dispatcher provides functionality to make it easier to work with frontend React components. |
|
| 4 | + * See deploynaut/docs/dispatcher.md for more information. |
|
| 5 | + * |
|
| 6 | + * @todo: currently we can't have more than one component mounted in parallel on any given Dispatcher, |
|
| 7 | + * because the SecurityID will diverge as soon as one of these components submit. |
|
| 8 | + */ |
|
| 9 | 9 | |
| 10 | 10 | abstract class Dispatcher extends DNRoot { |
| 11 | 11 | |