@@ -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,8 +1,8 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Will convert the Filename to the version 1.2 of deploynaut where it |
|
4 | - * more or less is exactly is the same as the Name but with .rb |
|
5 | - */ |
|
3 | + * Will convert the Filename to the version 1.2 of deploynaut where it |
|
4 | + * more or less is exactly is the same as the Name but with .rb |
|
5 | + */ |
|
6 | 6 | class DNMigrate1_1to1_2 extends BuildTask { |
7 | 7 | /** |
8 | 8 | * @param SS_HTTPRequest $request |
@@ -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 |