Completed
Pull Request — 1.1 (#490)
by Mateusz
15:50
created
code/api/nouns/APINoun.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
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
 	/**
Please login to merge, or discard this patch.
code/tasks/DNMigrate1_1to1_2.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
code/tasks/FilesystemSyncTask.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.
code/backends/SizeRestrictedPackageCache.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 block discarded – undo
91 91
 		$files = glob($dir . '/*.tar.gz');
92 92
 		if(sizeof($files) > $count) {
93 93
 			usort($files, function($a, $b) {
94
-			    return filemtime($a) > filemtime($b);
94
+				return filemtime($a) > filemtime($b);
95 95
 			});
96 96
 
97 97
 			for($i=0;$i<sizeof($files)-$count;$i++) {
Please login to merge, or discard this patch.
code/model/DNData.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -158,10 +158,10 @@
 block discarded – undo
158 158
 	/**
159 159
 	 * Grabs a list of projects from the env directory. The projects
160 160
 	 * in the builds directory alone will not be picked up.
161
- 	 * Returns an array of paths
161
+	 * Returns an array of paths
162 162
 	 *
163 163
 	 * @return array
164
- 	 */
164
+	 */
165 165
 	public function getProjectPaths() {
166 166
 		$paths = array();
167 167
 		if(!file_exists($this->getEnvironmentDir())) {
Please login to merge, or discard this patch.