Completed
Push — master ( 077859...60e689 )
by Mateusz
07:31
created
code/backends/DeploymentStrategy.php 3 patches
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -75,6 +75,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -110,8 +110,12 @@
 block discarded – undo
110 110
 		// Normalise "empty" values into dashes so comparisons are done properly.
111 111
 		// This means there is no diference between an empty string and a null
112 112
 		// but "0" is considered to be non-empty.
113
-		if(empty($from) && !strlen($from)) $from = '-';
114
-		if(empty($to) && !strlen($to)) $to = '-';
113
+		if(empty($from) && !strlen($from)) {
114
+			$from = '-';
115
+		}
116
+		if(empty($to) && !strlen($to)) {
117
+			$to = '-';
118
+		}
115 119
 
116 120
 		return $this->changes[$title] = array(
117 121
 			'from' => $from,
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -110,8 +110,8 @@  discard block
 block discarded – undo
110 110
 		// Normalise "empty" values into dashes so comparisons are done properly.
111 111
 		// This means there is no diference between an empty string and a null
112 112
 		// but "0" is considered to be non-empty.
113
-		if(empty($from) && !strlen($from)) $from = '-';
114
-		if(empty($to) && !strlen($to)) $to = '-';
113
+		if (empty($from) && !strlen($from)) $from = '-';
114
+		if (empty($to) && !strlen($to)) $to = '-';
115 115
 
116 116
 		return $this->changes[$title] = array(
117 117
 			'from' => $from,
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
 	 */
171 171
 	public function getChange($key) {
172 172
 		$changes = $this->getChanges();
173
-		if(array_key_exists($key, $changes)) {
173
+		if (array_key_exists($key, $changes)) {
174 174
 			return new ArrayData($changes[$key]);
175 175
 		}
176 176
 		return null;
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
 	 * @return string|null
190 190
 	 */
191 191
 	public function getOption($option) {
192
-		if(!empty($this->options[$option])) {
192
+		if (!empty($this->options[$option])) {
193 193
 			return $this->options[$option];
194 194
 		}
195 195
 	}
@@ -230,7 +230,7 @@  discard block
 block discarded – undo
230 230
 			DeploymentStrategy::WARNING_CODE => 1,
231 231
 			DeploymentStrategy::ERROR_CODE => 2
232 232
 		];
233
-		if($map[$current] < $map[$code]) {
233
+		if ($map[$current] < $map[$code]) {
234 234
 			$this->setValidationCode($code);
235 235
 		}
236 236
 	}
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
 		);
260 260
 
261 261
 		$output = array();
262
-		foreach($fields as $field) {
262
+		foreach ($fields as $field) {
263 263
 			$output[$field] = $this->$field;
264 264
 		}
265 265
 		return $output;
@@ -300,8 +300,8 @@  discard block
 block discarded – undo
300 300
 			'messages'
301 301
 		);
302 302
 
303
-		foreach($fields as $field) {
304
-			if(!empty($data[$field])) {
303
+		foreach ($fields as $field) {
304
+			if (!empty($data[$field])) {
305 305
 				$this->$field = $data[$field];
306 306
 			}
307 307
 		}
Please login to merge, or discard this patch.
code/model/DNEnvironment.php 4 patches
Braces   +36 added lines, -12 removed lines patch added patch discarded remove patch
@@ -386,9 +386,13 @@  discard block
 block discarded – undo
386 386
 		// Must be logged in to check permissions
387 387
 
388 388
 		if ($this->Usage==='Production' || $this->Usage==='Unspecified') {
389
-			if ($this->Project()->allowed(DNRoot::ALLOW_PROD_DEPLOYMENT, $member)) return true;
389
+			if ($this->Project()->allowed(DNRoot::ALLOW_PROD_DEPLOYMENT, $member)) {
390
+				return true;
391
+			}
390 392
 		} else {
391
-			if ($this->Project()->allowed(DNRoot::ALLOW_NON_PROD_DEPLOYMENT, $member)) return true;
393
+			if ($this->Project()->allowed(DNRoot::ALLOW_NON_PROD_DEPLOYMENT, $member)) {
394
+				return true;
395
+			}
392 396
 		}
393 397
 
394 398
 		return $this->Deployers()->byID($member->ID)
@@ -412,9 +416,13 @@  discard block
 block discarded – undo
412 416
 		// Must be logged in to check permissions
413 417
 
414 418
 		if ($this->Usage==='Production' || $this->Usage==='Unspecified') {
415
-			if ($this->Project()->allowed(DNRoot::ALLOW_PROD_SNAPSHOT, $member)) return true;
419
+			if ($this->Project()->allowed(DNRoot::ALLOW_PROD_SNAPSHOT, $member)) {
420
+				return true;
421
+			}
416 422
 		} else {
417
-			if ($this->Project()->allowed(DNRoot::ALLOW_NON_PROD_SNAPSHOT, $member)) return true;
423
+			if ($this->Project()->allowed(DNRoot::ALLOW_NON_PROD_SNAPSHOT, $member)) {
424
+				return true;
425
+			}
418 426
 		}
419 427
 
420 428
 		return $this->CanRestoreMembers()->byID($member->ID)
@@ -443,9 +451,13 @@  discard block
 block discarded – undo
443 451
 		}
444 452
 
445 453
 		if ($this->Usage==='Production' || $this->Usage==='Unspecified') {
446
-			if ($this->Project()->allowed(DNRoot::ALLOW_PROD_SNAPSHOT, $member)) return true;
454
+			if ($this->Project()->allowed(DNRoot::ALLOW_PROD_SNAPSHOT, $member)) {
455
+				return true;
456
+			}
447 457
 		} else {
448
-			if ($this->Project()->allowed(DNRoot::ALLOW_NON_PROD_SNAPSHOT, $member)) return true;
458
+			if ($this->Project()->allowed(DNRoot::ALLOW_NON_PROD_SNAPSHOT, $member)) {
459
+				return true;
460
+			}
449 461
 		}
450 462
 
451 463
 		return $this->CanBackupMembers()->byID($member->ID)
@@ -478,9 +490,13 @@  discard block
 block discarded – undo
478 490
 		// Must be logged in to check permissions
479 491
 
480 492
 		if ($this->Usage==='Production' || $this->Usage==='Unspecified') {
481
-			if ($this->Project()->allowed(DNRoot::ALLOW_PROD_SNAPSHOT, $member)) return true;
493
+			if ($this->Project()->allowed(DNRoot::ALLOW_PROD_SNAPSHOT, $member)) {
494
+				return true;
495
+			}
482 496
 		} else {
483
-			if ($this->Project()->allowed(DNRoot::ALLOW_NON_PROD_SNAPSHOT, $member)) return true;
497
+			if ($this->Project()->allowed(DNRoot::ALLOW_NON_PROD_SNAPSHOT, $member)) {
498
+				return true;
499
+			}
484 500
 		}
485 501
 
486 502
 		return $this->ArchiveUploaders()->byID($member->ID)
@@ -504,9 +520,13 @@  discard block
 block discarded – undo
504 520
 		// Must be logged in to check permissions
505 521
 
506 522
 		if ($this->Usage==='Production' || $this->Usage==='Unspecified') {
507
-			if ($this->Project()->allowed(DNRoot::ALLOW_PROD_SNAPSHOT, $member)) return true;
523
+			if ($this->Project()->allowed(DNRoot::ALLOW_PROD_SNAPSHOT, $member)) {
524
+				return true;
525
+			}
508 526
 		} else {
509
-			if ($this->Project()->allowed(DNRoot::ALLOW_NON_PROD_SNAPSHOT, $member)) return true;
527
+			if ($this->Project()->allowed(DNRoot::ALLOW_NON_PROD_SNAPSHOT, $member)) {
528
+				return true;
529
+			}
510 530
 		}
511 531
 
512 532
 		return $this->ArchiveDownloaders()->byID($member->ID)
@@ -573,9 +593,13 @@  discard block
 block discarded – undo
573 593
 		// Must be logged in to check permissions
574 594
 
575 595
 		if ($this->Usage==='Production' || $this->Usage==='Unspecified') {
576
-			if ($this->Project()->allowed(DNRoot::ALLOW_PROD_SNAPSHOT, $member)) return true;
596
+			if ($this->Project()->allowed(DNRoot::ALLOW_PROD_SNAPSHOT, $member)) {
597
+				return true;
598
+			}
577 599
 		} else {
578
-			if ($this->Project()->allowed(DNRoot::ALLOW_NON_PROD_SNAPSHOT, $member)) return true;
600
+			if ($this->Project()->allowed(DNRoot::ALLOW_NON_PROD_SNAPSHOT, $member)) {
601
+				return true;
602
+			}
579 603
 		}
580 604
 
581 605
 		return $this->ArchiveDeleters()->byID($member->ID)
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -954,7 +954,7 @@
 block discarded – undo
954 954
 to other environments, alongside the "Who can restore" permission.<br>
955 955
 Should include all users with upload permissions, otherwise they can't download
956 956
 their own uploads.
957
-PHP
957
+php
958 958
 				),
959 959
 
960 960
 			// The Main.PipelineApprovers
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -578,7 +578,7 @@
 block discarded – undo
578 578
 	 * Dear people of the future: If you are looking to optimize this, simply create a CurrentBuildSHA(), which can be
579 579
 	 * a lot faster. I presume you came here because of the Project display template, which only needs a SHA.
580 580
 	 *
581
-	 * @return false|DNDeployment
581
+	 * @return DNDeployment
582 582
 	 */
583 583
 	public function CurrentBuild() {
584 584
 		// The DeployHistory function is far too slow to use for this
Please login to merge, or discard this patch.
Spacing   +63 added lines, -63 removed lines patch added patch discarded remove patch
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
 	 */
181 181
 	public function Backend() {
182 182
 		$backends = array_keys($this->config()->get('allowed_backends', Config::FIRST_SET));
183
-		switch(sizeof($backends)) {
183
+		switch (sizeof($backends)) {
184 184
 		// Nothing allowed, use the default value "DeploymentBackend"
185 185
 			case 0:
186 186
 				$backend = "DeploymentBackend";
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
 			// Multiple choices, use our choice if it's legal, otherwise default to the first item on the list
195 195
 			default:
196 196
 				$backend = $this->BackendIdentifier;
197
-				if(!in_array($backend, $backends)) {
197
+				if (!in_array($backend, $backends)) {
198 198
 					$backend = $backends[0];
199 199
 				}
200 200
 		}
@@ -256,14 +256,14 @@  discard block
 block discarded – undo
256 256
 
257 257
 	public function getBareURL() {
258 258
 		$url = parse_url($this->URL);
259
-		if(isset($url['host'])) {
259
+		if (isset($url['host'])) {
260 260
 			return strtolower($url['host']);
261 261
 		}
262 262
 	}
263 263
 
264 264
 	public function getBareDefaultURL() {
265 265
 		$url = parse_url($this->getDefaultURL());
266
-		if(isset($url['host'])) {
266
+		if (isset($url['host'])) {
267 267
 			return strtolower($url['host']);
268 268
 		}
269 269
 	}
@@ -275,20 +275,20 @@  discard block
 block discarded – undo
275 275
 	 * @return boolean
276 276
 	 */
277 277
 	public function canView($member = null) {
278
-		if(!$member) {
278
+		if (!$member) {
279 279
 			$member = Member::currentUser();
280 280
 		}
281
-		if(!$member) {
281
+		if (!$member) {
282 282
 			return false;
283 283
 		}
284 284
 		// Must be logged in to check permissions
285 285
 
286
-		if(Permission::checkMember($member, 'ADMIN')) {
286
+		if (Permission::checkMember($member, 'ADMIN')) {
287 287
 			return true;
288 288
 		}
289 289
 
290 290
 		// if no Viewers or ViewerGroups defined, fallback to DNProject::canView permissions
291
-		if($this->Viewers()->exists() || $this->ViewerGroups()->exists()) {
291
+		if ($this->Viewers()->exists() || $this->ViewerGroups()->exists()) {
292 292
 			return $this->Viewers()->byID($member->ID)
293 293
 				|| $member->inGroups($this->ViewerGroups());
294 294
 		}
@@ -303,10 +303,10 @@  discard block
 block discarded – undo
303 303
 	 * @return boolean
304 304
 	 */
305 305
 	public function canDeploy($member = null) {
306
-		if(!$member) {
306
+		if (!$member) {
307 307
 			$member = Member::currentUser();
308 308
 		}
309
-		if(!$member) {
309
+		if (!$member) {
310 310
 			return false;
311 311
 		}
312 312
 		// Must be logged in to check permissions
@@ -338,10 +338,10 @@  discard block
 block discarded – undo
338 338
 	 * @return boolean true if $member can restore, and false if they can't.
339 339
 	 */
340 340
 	public function canRestore($member = null) {
341
-		if(!$member) {
341
+		if (!$member) {
342 342
 			$member = Member::currentUser();
343 343
 		}
344
-		if(!$member) {
344
+		if (!$member) {
345 345
 			return false;
346 346
 		}
347 347
 		// Must be logged in to check permissions
@@ -365,15 +365,15 @@  discard block
 block discarded – undo
365 365
 	 */
366 366
 	public function canBackup($member = null) {
367 367
 		$project = $this->Project();
368
-		if($project->HasDiskQuota() && $project->HasExceededDiskQuota()) {
368
+		if ($project->HasDiskQuota() && $project->HasExceededDiskQuota()) {
369 369
 			return false;
370 370
 		}
371 371
 
372
-		if(!$member) {
372
+		if (!$member) {
373 373
 			$member = Member::currentUser();
374 374
 		}
375 375
 		// Must be logged in to check permissions
376
-		if(!$member) {
376
+		if (!$member) {
377 377
 			return false;
378 378
 		}
379 379
 
@@ -400,14 +400,14 @@  discard block
 block discarded – undo
400 400
 	 */
401 401
 	public function canUploadArchive($member = null) {
402 402
 		$project = $this->Project();
403
-		if($project->HasDiskQuota() && $project->HasExceededDiskQuota()) {
403
+		if ($project->HasDiskQuota() && $project->HasExceededDiskQuota()) {
404 404
 			return false;
405 405
 		}
406 406
 
407
-		if(!$member) {
407
+		if (!$member) {
408 408
 			$member = Member::currentUser();
409 409
 		}
410
-		if(!$member) {
410
+		if (!$member) {
411 411
 			return false;
412 412
 		}
413 413
 		// Must be logged in to check permissions
@@ -430,10 +430,10 @@  discard block
 block discarded – undo
430 430
 	 * @return boolean true if $member can download archives from this environment, false if they can't.
431 431
 	 */
432 432
 	public function canDownloadArchive($member = null) {
433
-		if(!$member) {
433
+		if (!$member) {
434 434
 			$member = Member::currentUser();
435 435
 		}
436
-		if(!$member) {
436
+		if (!$member) {
437 437
 			return false;
438 438
 		}
439 439
 		// Must be logged in to check permissions
@@ -456,10 +456,10 @@  discard block
 block discarded – undo
456 456
 	 * @return boolean true if $member can delete archives from this environment, false if they can't.
457 457
 	 */
458 458
 	public function canDeleteArchive($member = null) {
459
-		if(!$member) {
459
+		if (!$member) {
460 460
 			$member = Member::currentUser();
461 461
 		}
462
-		if(!$member) {
462
+		if (!$member) {
463 463
 			return false;
464 464
 		}
465 465
 		// Must be logged in to check permissions
@@ -589,18 +589,18 @@  discard block
 block discarded – undo
589 589
 			'State' => 'Completed'
590 590
 		))->sort('LastEdited DESC')->first();
591 591
 
592
-		if(!$deploy || (!$deploy->SHA)) {
592
+		if (!$deploy || (!$deploy->SHA)) {
593 593
 			return false;
594 594
 		}
595 595
 
596 596
 		$repo = $this->Project()->getRepository();
597
-		if(!$repo) {
597
+		if (!$repo) {
598 598
 			return $deploy;
599 599
 		}
600 600
 
601 601
 		try {
602 602
 			$commit = $repo->getCommit($deploy->SHA);
603
-			if($commit) {
603
+			if ($commit) {
604 604
 				$deploy->Message = Convert::raw2xml($commit->getMessage());
605 605
 				$deploy->Committer = Convert::raw2xml($commit->getCommitterName());
606 606
 				$deploy->CommitDate = $commit->getCommitterDate()->Format('d/m/Y g:ia');
@@ -608,7 +608,7 @@  discard block
 block discarded – undo
608 608
 				$deploy->AuthorDate = $commit->getAuthorDate()->Format('d/m/Y g:ia');
609 609
 			}
610 610
 			// We can't find this SHA, so we ignore adding a commit message to the deployment
611
-		} catch(Exception $ex) { }
611
+		} catch (Exception $ex) { }
612 612
 
613 613
 		return $deploy;
614 614
 	}
@@ -631,17 +631,17 @@  discard block
 block discarded – undo
631 631
 	protected function getCommitData($sha) {
632 632
 		try {
633 633
 			$repo = $this->Project()->getRepository();
634
-			if($repo !== false) {
634
+			if ($repo !== false) {
635 635
 				$commit = new \Gitonomy\Git\Commit($repo, $sha);
636 636
 				return [
637
-					'AuthorName' => (string)Convert::raw2xml($commit->getAuthorName()),
638
-					'AuthorEmail' => (string)Convert::raw2xml($commit->getAuthorEmail()),
639
-					'Message' => (string)Convert::raw2xml($commit->getMessage()),
637
+					'AuthorName' => (string) Convert::raw2xml($commit->getAuthorName()),
638
+					'AuthorEmail' => (string) Convert::raw2xml($commit->getAuthorEmail()),
639
+					'Message' => (string) Convert::raw2xml($commit->getMessage()),
640 640
 					'ShortHash' => Convert::raw2xml($commit->getFixedShortHash(8)),
641 641
 					'Hash' => Convert::raw2xml($commit->getHash())
642 642
 				];
643 643
 			}
644
-		} catch(\Gitonomy\Git\Exception\ReferenceNotFoundException $exc) {
644
+		} catch (\Gitonomy\Git\Exception\ReferenceNotFoundException $exc) {
645 645
 			SS_Log::log($exc, SS_Log::WARN);
646 646
 		}
647 647
 		return array(
@@ -713,12 +713,12 @@  discard block
 block discarded – undo
713 713
 		$fields = new FieldList(new TabSet('Root'));
714 714
 
715 715
 		$project = $this->Project();
716
-		if($project && $project->exists()) {
716
+		if ($project && $project->exists()) {
717 717
 			$viewerGroups = $project->Viewers();
718 718
 			$groups = $viewerGroups->sort('Title')->map()->toArray();
719 719
 			$members = array();
720
-			foreach($viewerGroups as $group) {
721
-				foreach($group->Members()->map() as $k => $v) {
720
+			foreach ($viewerGroups as $group) {
721
+				foreach ($group->Members()->map() as $k => $v) {
722 722
 					$members[$k] = $v;
723 723
 				}
724 724
 			}
@@ -755,7 +755,7 @@  discard block
 block discarded – undo
755 755
 		// Backend identifier - pick from a named list of configurations specified in YML config
756 756
 		$backends = $this->config()->get('allowed_backends', Config::FIRST_SET);
757 757
 		// If there's only 1 backend, then user selection isn't needed
758
-		if(sizeof($backends) > 1) {
758
+		if (sizeof($backends) > 1) {
759 759
 			$fields->addFieldToTab('Root.Main', DropdownField::create('BackendIdentifier', 'Deployment backend')
760 760
 				->setSource($backends)
761 761
 				->setDescription('What kind of deployment system should be used to deploy to this environment'));
@@ -804,7 +804,7 @@  discard block
 block discarded – undo
804 804
 				->buildPermissionField('ArchiveUploaderGroups', 'ArchiveUploaders', $groups, $members)
805 805
 				->setTitle('Who can upload?')
806 806
 				->setDescription(
807
-					'Users who can upload archives linked to this environment into Deploynaut.<br />' .
807
+					'Users who can upload archives linked to this environment into Deploynaut.<br />'.
808 808
 					'Linking them to an environment allows limiting download permissions (see below).'
809 809
 				),
810 810
 
@@ -824,14 +824,14 @@  discard block
 block discarded – undo
824 824
 		));
825 825
 
826 826
 		// The Main.DeployConfig
827
-		if($this->Project()->exists()) {
827
+		if ($this->Project()->exists()) {
828 828
 			$this->setDeployConfigurationFields($fields);
829 829
 		}
830 830
 
831 831
 		// The DataArchives
832 832
 		$dataArchiveConfig = GridFieldConfig_RecordViewer::create();
833 833
 		$dataArchiveConfig->removeComponentsByType('GridFieldAddNewButton');
834
-		if(class_exists('GridFieldBulkManager')) {
834
+		if (class_exists('GridFieldBulkManager')) {
835 835
 			$dataArchiveConfig->addComponent(new GridFieldBulkManager());
836 836
 		}
837 837
 		$dataArchive = GridField::create('DataArchives', 'Data Archives', $this->DataArchives(), $dataArchiveConfig);
@@ -840,7 +840,7 @@  discard block
 block discarded – undo
840 840
 		// Deployments
841 841
 		$deploymentsConfig = GridFieldConfig_RecordEditor::create();
842 842
 		$deploymentsConfig->removeComponentsByType('GridFieldAddNewButton');
843
-		if(class_exists('GridFieldBulkManager')) {
843
+		if (class_exists('GridFieldBulkManager')) {
844 844
 			$deploymentsConfig->addComponent(new GridFieldBulkManager());
845 845
 		}
846 846
 		$deployments = GridField::create('Deployments', 'Deployments', $this->Deployments(), $deploymentsConfig);
@@ -851,7 +851,7 @@  discard block
 block discarded – undo
851 851
 		// Add actions
852 852
 		$action = new FormAction('check', 'Check Connection');
853 853
 		$action->setUseButtonTag(true);
854
-		$dataURL = Director::absoluteBaseURL() . 'naut/api/' . $this->Project()->Name . '/' . $this->Name . '/ping';
854
+		$dataURL = Director::absoluteBaseURL().'naut/api/'.$this->Project()->Name.'/'.$this->Name.'/ping';
855 855
 		$action->setAttribute('data-url', $dataURL);
856 856
 		$fields->insertBefore($action, 'Name');
857 857
 
@@ -864,11 +864,11 @@  discard block
 block discarded – undo
864 864
 	 * @param FieldList $fields
865 865
 	 */
866 866
 	protected function setDeployConfigurationFields(&$fields) {
867
-		if(!$this->config()->get('allow_web_editing')) {
867
+		if (!$this->config()->get('allow_web_editing')) {
868 868
 			return;
869 869
 		}
870 870
 
871
-		if($this->envFileExists()) {
871
+		if ($this->envFileExists()) {
872 872
 			$deployConfig = new TextareaField('DeployConfig', 'Deploy config', $this->getEnvironmentConfig());
873 873
 			$deployConfig->setRows(40);
874 874
 			$fields->insertAfter($deployConfig, 'Filename');
@@ -888,8 +888,8 @@  discard block
 block discarded – undo
888 888
 	 */
889 889
 	public function onBeforeWrite() {
890 890
 		parent::onBeforeWrite();
891
-		if($this->Name && $this->Name . '.rb' != $this->Filename) {
892
-			$this->Filename = $this->Name . '.rb';
891
+		if ($this->Name && $this->Name.'.rb' != $this->Filename) {
892
+			$this->Filename = $this->Name.'.rb';
893 893
 		}
894 894
 		$this->checkEnvironmentPath();
895 895
 		$this->writeConfigFile();
@@ -898,13 +898,13 @@  discard block
 block discarded – undo
898 898
 	public function onAfterWrite() {
899 899
 		parent::onAfterWrite();
900 900
 
901
-		if($this->Usage === self::PRODUCTION || $this->Usage === self::UAT) {
901
+		if ($this->Usage === self::PRODUCTION || $this->Usage === self::UAT) {
902 902
 			$conflicting = DNEnvironment::get()
903 903
 				->filter('ProjectID', $this->ProjectID)
904 904
 				->filter('Usage', $this->Usage)
905 905
 				->exclude('ID', $this->ID);
906 906
 
907
-			foreach($conflicting as $otherEnvironment) {
907
+			foreach ($conflicting as $otherEnvironment) {
908 908
 				$otherEnvironment->Usage = self::UNSPECIFIED;
909 909
 				$otherEnvironment->write();
910 910
 			}
@@ -918,7 +918,7 @@  discard block
 block discarded – undo
918 918
 	protected function checkEnvironmentPath() {
919 919
 		// Create folder if it doesn't exist
920 920
 		$configDir = dirname($this->getConfigFilename());
921
-		if(!file_exists($configDir) && $configDir) {
921
+		if (!file_exists($configDir) && $configDir) {
922 922
 			mkdir($configDir, 0777, true);
923 923
 		}
924 924
 	}
@@ -927,18 +927,18 @@  discard block
 block discarded – undo
927 927
 	 * Write the deployment config file to filesystem
928 928
 	 */
929 929
 	protected function writeConfigFile() {
930
-		if(!$this->config()->get('allow_web_editing')) {
930
+		if (!$this->config()->get('allow_web_editing')) {
931 931
 			return;
932 932
 		}
933 933
 
934 934
 		// Create a basic new environment config from a template
935
-		if(!$this->envFileExists()
935
+		if (!$this->envFileExists()
936 936
 			&& $this->Filename
937 937
 			&& $this->CreateEnvConfig
938 938
 		) {
939
-			$templateFile = $this->config()->template_file ?: BASE_PATH . '/deploynaut/environment.template';
939
+			$templateFile = $this->config()->template_file ?: BASE_PATH.'/deploynaut/environment.template';
940 940
 			file_put_contents($this->getConfigFilename(), file_get_contents($templateFile));
941
-		} else if($this->envFileExists() && $this->DeployConfig) {
941
+		} else if ($this->envFileExists() && $this->DeployConfig) {
942 942
 			file_put_contents($this->getConfigFilename(), $this->DeployConfig);
943 943
 		}
944 944
 	}
@@ -949,12 +949,12 @@  discard block
 block discarded – undo
949 949
 	public function onAfterDelete() {
950 950
 		parent::onAfterDelete();
951 951
 		// Create a basic new environment config from a template
952
-		if($this->config()->get('allow_web_editing') && $this->envFileExists()) {
952
+		if ($this->config()->get('allow_web_editing') && $this->envFileExists()) {
953 953
 			unlink($this->getConfigFilename());
954 954
 		}
955 955
 
956 956
 		$create = $this->CreateEnvironment();
957
-		if($create && $create->exists()) {
957
+		if ($create && $create->exists()) {
958 958
 			$create->delete();
959 959
 		}
960 960
 	}
@@ -963,7 +963,7 @@  discard block
 block discarded – undo
963 963
 	 * @return string
964 964
 	 */
965 965
 	protected function getEnvironmentConfig() {
966
-		if(!$this->envFileExists()) {
966
+		if (!$this->envFileExists()) {
967 967
 			return '';
968 968
 		}
969 969
 		return file_get_contents($this->getConfigFilename());
@@ -973,7 +973,7 @@  discard block
 block discarded – undo
973 973
 	 * @return boolean
974 974
 	 */
975 975
 	protected function envFileExists() {
976
-		if(!$this->getConfigFilename()) {
976
+		if (!$this->getConfigFilename()) {
977 977
 			return false;
978 978
 		}
979 979
 		return file_exists($this->getConfigFilename());
@@ -985,13 +985,13 @@  discard block
 block discarded – undo
985 985
 	 * @return string
986 986
 	 */
987 987
 	public function getConfigFilename() {
988
-		if(!$this->Project()->exists()) {
988
+		if (!$this->Project()->exists()) {
989 989
 			return '';
990 990
 		}
991
-		if(!$this->Filename) {
991
+		if (!$this->Filename) {
992 992
 			return '';
993 993
 		}
994
-		return $this->DNData()->getEnvironmentDir() . '/' . $this->Project()->Name . '/' . $this->Filename;
994
+		return $this->DNData()->getEnvironmentDir().'/'.$this->Project()->Name.'/'.$this->Filename;
995 995
 	}
996 996
 
997 997
 	/**
@@ -1004,24 +1004,24 @@  discard block
 block discarded – undo
1004 1004
 	 */
1005 1005
 	public static function array_to_viewabledata($array) {
1006 1006
 		// Don't transform non-arrays
1007
-		if(!is_array($array)) {
1007
+		if (!is_array($array)) {
1008 1008
 			return $array;
1009 1009
 		}
1010 1010
 
1011 1011
 		// Figure out whether this is indexed or associative
1012 1012
 		$keys = array_keys($array);
1013 1013
 		$assoc = ($keys != array_keys($keys));
1014
-		if($assoc) {
1014
+		if ($assoc) {
1015 1015
 			// Treat as viewable data
1016 1016
 			$data = new ArrayData(array());
1017
-			foreach($array as $key => $value) {
1017
+			foreach ($array as $key => $value) {
1018 1018
 				$data->setField($key, self::array_to_viewabledata($value));
1019 1019
 			}
1020 1020
 			return $data;
1021 1021
 		} else {
1022 1022
 			// Treat this as basic non-associative list
1023 1023
 			$list = new ArrayList();
1024
-			foreach($array as $value) {
1024
+			foreach ($array as $value) {
1025 1025
 				$list->push(self::array_to_viewabledata($value));
1026 1026
 			}
1027 1027
 			return $list;
@@ -1032,7 +1032,7 @@  discard block
 block discarded – undo
1032 1032
 		$result = parent::validate();
1033 1033
 		$backend = $this->Backend();
1034 1034
 
1035
-		if(strcasecmp('test', $this->Name) === 0 && get_class($backend) == 'CapistranoDeploymentBackend') {
1035
+		if (strcasecmp('test', $this->Name) === 0 && get_class($backend) == 'CapistranoDeploymentBackend') {
1036 1036
 			$result->error('"test" is not a valid environment name when using Capistrano backend.');
1037 1037
 		}
1038 1038
 
Please login to merge, or discard this patch.
code/model/DNProject.php 2 patches
Braces   +15 added lines, -5 removed lines patch added patch discarded remove patch
@@ -929,7 +929,9 @@  discard block
 block discarded – undo
929 929
 	 * @return SS_List
930 930
 	 */
931 931
 	public function whoIsAllowedAny($codes) {
932
-		if(!is_array($codes)) $codes = array($codes);
932
+		if(!is_array($codes)) {
933
+			$codes = array($codes);
934
+		}
933 935
 
934 936
 		$SQLa_codes = Convert::raw2sql($codes);
935 937
 		$SQL_codes = join("','", $SQLa_codes);
@@ -991,7 +993,9 @@  discard block
 block discarded – undo
991 993
 			$member = Member::currentUser();
992 994
 		}
993 995
 
994
-		if(Permission::checkMember($member, 'ADMIN')) return true;
996
+		if(Permission::checkMember($member, 'ADMIN')) {
997
+			return true;
998
+		}
995 999
 
996 1000
 		$hits = $this->whoIsAllowedAny($codes)->filter('Member.ID', $member->ID)->count();
997 1001
 		return ($hits>0 ? true : false);
@@ -1018,7 +1022,9 @@  discard block
 block discarded – undo
1018 1022
 			});
1019 1023
 
1020 1024
 			// If anything returns false then we're not ready.
1021
-			if($isDone) return min($isDone);
1025
+			if($isDone) {
1026
+				return min($isDone);
1027
+			}
1022 1028
 		}
1023 1029
 
1024 1030
 		return true;
@@ -1099,8 +1105,12 @@  discard block
 block discarded – undo
1099 1105
 	 * @return bool
1100 1106
 	 */
1101 1107
 	public function canCreate($member = null) {
1102
-		if(!$member) $member = Member::currentUser();
1103
-		if(!$member) return false;
1108
+		if(!$member) {
1109
+			$member = Member::currentUser();
1110
+		}
1111
+		if(!$member) {
1112
+			return false;
1113
+		}
1104 1114
 
1105 1115
 		if(Permission::checkMember($member, 'ADMIN')) {
1106 1116
 			return true;
Please login to merge, or discard this patch.
Spacing   +70 added lines, -70 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
 
110 110
 		// add the administrators group as the viewers of the new project
111 111
 		$adminGroup = Group::get()->filter('Code', 'administrators')->first();
112
-		if($adminGroup && $adminGroup->exists()) {
112
+		if ($adminGroup && $adminGroup->exists()) {
113 113
 			$project->Viewers()->add($adminGroup);
114 114
 		}
115 115
 		return $project;
@@ -124,8 +124,8 @@  discard block
 block discarded – undo
124 124
 	public function getUsedQuotaMB($round = 2) {
125 125
 		$size = 0;
126 126
 
127
-		foreach($this->Environments() as $environment) {
128
-			foreach($environment->DataArchives()->filter('IsBackup', 0) as $archive) {
127
+		foreach ($this->Environments() as $environment) {
128
+			foreach ($environment->DataArchives()->filter('IsBackup', 0) as $archive) {
129 129
 				$size += $archive->ArchiveFile()->getAbsoluteSize();
130 130
 			}
131 131
 		}
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
 	public function getDiskQuotaMB() {
145 145
 		$size = $this->getField('DiskQuotaMB');
146 146
 
147
-		if(empty($size)) {
147
+		if (empty($size)) {
148 148
 			$defaults = $this->config()->get('defaults');
149 149
 			$size = (isset($defaults['DiskQuotaMB'])) ? $defaults['DiskQuotaMB'] : 0;
150 150
 		}
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
 	 */
178 178
 	public function DiskQuotaUsagePercent() {
179 179
 		$quota = $this->getDiskQuotaMB();
180
-		if($quota > 0) {
180
+		if ($quota > 0) {
181 181
 			return $this->getUsedQuotaMB() * 100 / $quota;
182 182
 		}
183 183
 		return 100;
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
 		$controller = Controller::curr();
195 195
 		$actionType = $controller->getField('CurrentActionType');
196 196
 
197
-		if(DNRoot::FlagSnapshotsEnabled() && $this->isProjectReady()) {
197
+		if (DNRoot::FlagSnapshotsEnabled() && $this->isProjectReady()) {
198 198
 			$list->push(new ArrayData(array(
199 199
 				'Link' => sprintf('naut/project/%s/snapshots', $this->Name),
200 200
 				'Title' => 'Snapshots',
@@ -245,11 +245,11 @@  discard block
 block discarded – undo
245 245
 	 * @return boolean
246 246
 	 */
247 247
 	public function canView($member = null) {
248
-		if(!$member) {
248
+		if (!$member) {
249 249
 			$member = Member::currentUser();
250 250
 		}
251 251
 
252
-		if(Permission::checkMember($member, 'ADMIN')) {
252
+		if (Permission::checkMember($member, 'ADMIN')) {
253 253
 			return true;
254 254
 		}
255 255
 
@@ -272,7 +272,7 @@  discard block
 block discarded – undo
272 272
 			return true;
273 273
 		}
274 274
 
275
-		return (bool)$this->Environments()->filterByCallback(function($env) use($member) {
275
+		return (bool) $this->Environments()->filterByCallback(function($env) use($member) {
276 276
 			return $env->canRestore($member);
277 277
 		})->Count();
278 278
 	}
@@ -292,7 +292,7 @@  discard block
 block discarded – undo
292 292
 			return true;
293 293
 		}
294 294
 
295
-		return (bool)$this->Environments()->filterByCallback(function($env) use($member) {
295
+		return (bool) $this->Environments()->filterByCallback(function($env) use($member) {
296 296
 			return $env->canBackup($member);
297 297
 		})->Count();
298 298
 	}
@@ -312,7 +312,7 @@  discard block
 block discarded – undo
312 312
 			return true;
313 313
 		}
314 314
 
315
-		return (bool)$this->Environments()->filterByCallback(function($env) use($member) {
315
+		return (bool) $this->Environments()->filterByCallback(function($env) use($member) {
316 316
 			return $env->canUploadArchive($member);
317 317
 		})->Count();
318 318
 	}
@@ -332,7 +332,7 @@  discard block
 block discarded – undo
332 332
 			return true;
333 333
 		}
334 334
 
335
-		return (bool)$this->Environments()->filterByCallback(function($env) use($member) {
335
+		return (bool) $this->Environments()->filterByCallback(function($env) use($member) {
336 336
 			return $env->canDownloadArchive($member);
337 337
 		})->Count();
338 338
 	}
@@ -349,9 +349,9 @@  discard block
 block discarded – undo
349 349
 	 */
350 350
 	public function canCreateEnvironments($member = null) {
351 351
 		$envType = $this->AllowedEnvironmentType;
352
-		if($envType) {
352
+		if ($envType) {
353 353
 			$env = Injector::inst()->get($envType);
354
-			if($env instanceof EnvironmentCreateBackend) {
354
+			if ($env instanceof EnvironmentCreateBackend) {
355 355
 				return $this->allowed(DNRoot::ALLOW_CREATE_ENVIRONMENT, $member);
356 356
 			}
357 357
 		}
@@ -387,11 +387,11 @@  discard block
 block discarded – undo
387 387
 	 * @return array
388 388
 	 */
389 389
 	public function getProcessEnv() {
390
-		if(file_exists($this->getPrivateKeyPath())) {
390
+		if (file_exists($this->getPrivateKeyPath())) {
391 391
 			// Key-pair is available, use it.
392 392
 			$processEnv = array(
393 393
 				'IDENT_KEY' => $this->getPrivateKeyPath(),
394
-				'GIT_SSH' => BASE_PATH . "/deploynaut/git-deploy.sh"
394
+				'GIT_SSH' => BASE_PATH."/deploynaut/git-deploy.sh"
395 395
 			);
396 396
 		} else {
397 397
 			$processEnv = array();
@@ -432,7 +432,7 @@  discard block
 block discarded – undo
432 432
 	 * @return DNBranchList
433 433
 	 */
434 434
 	public function DNBranchList() {
435
-		if($this->CVSPath && !$this->repoExists()) {
435
+		if ($this->CVSPath && !$this->repoExists()) {
436 436
 			$this->cloneRepo();
437 437
 		}
438 438
 		return DNBranchList::create($this, $this->DNData());
@@ -444,7 +444,7 @@  discard block
 block discarded – undo
444 444
 	 * @return DNReferenceList
445 445
 	 */
446 446
 	public function DNTagList() {
447
-		if($this->CVSPath && !$this->repoExists()) {
447
+		if ($this->CVSPath && !$this->repoExists()) {
448 448
 			$this->cloneRepo();
449 449
 		}
450 450
 		return DNReferenceList::create($this, $this->DNData(), null, null, true);
@@ -454,7 +454,7 @@  discard block
 block discarded – undo
454 454
 	 * @return false|Gitonomy\Git\Repository
455 455
 	 */
456 456
 	public function getRepository() {
457
-		if(!$this->repoExists()) {
457
+		if (!$this->repoExists()) {
458 458
 			return false;
459 459
 		}
460 460
 
@@ -469,11 +469,11 @@  discard block
 block discarded – undo
469 469
 	 */
470 470
 	public function DNEnvironmentList() {
471 471
 
472
-		if(!self::$_current_member_cache) {
472
+		if (!self::$_current_member_cache) {
473 473
 			self::$_current_member_cache = Member::currentUser();
474 474
 		}
475 475
 
476
-		if(self::$_current_member_cache === false) {
476
+		if (self::$_current_member_cache === false) {
477 477
 			return new ArrayList();
478 478
 		}
479 479
 
@@ -498,9 +498,9 @@  discard block
 block discarded – undo
498 498
 	 * @return false|DNDeployment
499 499
 	 */
500 500
 	public function currentBuilds() {
501
-		if(!isset(self::$relation_cache['currentBuilds.'.$this->ID])) {
501
+		if (!isset(self::$relation_cache['currentBuilds.'.$this->ID])) {
502 502
 			$currentBuilds = array();
503
-			foreach($this->Environments() as $env) {
503
+			foreach ($this->Environments() as $env) {
504 504
 				$currentBuilds[$env->Name] = $env->CurrentBuild();
505 505
 			}
506 506
 			self::$relation_cache['currentBuilds.'.$this->ID] = $currentBuilds;
@@ -520,7 +520,7 @@  discard block
 block discarded – undo
520 520
 	 * @return string|null
521 521
 	 */
522 522
 	public function CreateEnvironmentLink() {
523
-		if($this->canCreateEnvironments()) {
523
+		if ($this->canCreateEnvironments()) {
524 524
 			return $this->Link('createenv');
525 525
 		}
526 526
 		return null;
@@ -538,11 +538,11 @@  discard block
 block discarded – undo
538 538
 	 */
539 539
 	public function IsStarred() {
540 540
 		$member = Member::currentUser();
541
-		if($member === null) {
541
+		if ($member === null) {
542 542
 			return false;
543 543
 		}
544 544
 		$favourited = $this->StarredBy()->filter('MemberID', $member->ID);
545
-		if($favourited->count() == 0) {
545
+		if ($favourited->count() == 0) {
546 546
 			return false;
547 547
 		}
548 548
 		return true;
@@ -597,7 +597,7 @@  discard block
 block discarded – undo
597 597
 
598 598
 		$environmentTypes = ClassInfo::implementorsOf('EnvironmentCreateBackend');
599 599
 		$types = array();
600
-		foreach($environmentTypes as $type) {
600
+		foreach ($environmentTypes as $type) {
601 601
 			$types[$type] = $type;
602 602
 		}
603 603
 
@@ -621,11 +621,11 @@  discard block
 block discarded – undo
621 621
 	 */
622 622
 	public function setCreateProjectFolderField(&$fields) {
623 623
 		// Check if the capistrano project folder exists
624
-		if(!$this->Name) {
624
+		if (!$this->Name) {
625 625
 			return;
626 626
 		}
627 627
 
628
-		if($this->projectFolderExists()) {
628
+		if ($this->projectFolderExists()) {
629 629
 			return;
630 630
 		}
631 631
 
@@ -657,7 +657,7 @@  discard block
 block discarded – undo
657 657
 	 */
658 658
 	public function cloneRepo() {
659 659
 		// Avoid this being called multiple times in the same request
660
-		if(!isset(self::$has_cloned_cache[$this->ID])) {
660
+		if (!isset(self::$has_cloned_cache[$this->ID])) {
661 661
 			$fetch = DNGitFetch::create();
662 662
 			$fetch->ProjectID = $this->ID;
663 663
 			$fetch->write();
@@ -681,7 +681,7 @@  discard block
 block discarded – undo
681 681
 	public function onBeforeWrite() {
682 682
 		parent::onBeforeWrite();
683 683
 
684
-		if($this->CreateEnvFolder && !file_exists($this->getProjectFolderPath())) {
684
+		if ($this->CreateEnvFolder && !file_exists($this->getProjectFolderPath())) {
685 685
 			mkdir($this->getProjectFolderPath());
686 686
 		}
687 687
 	}
@@ -689,12 +689,12 @@  discard block
 block discarded – undo
689 689
 	public function onAfterWrite() {
690 690
 		parent::onAfterWrite();
691 691
 
692
-		if(!$this->CVSPath) {
692
+		if (!$this->CVSPath) {
693 693
 			return;
694 694
 		}
695 695
 
696 696
 		$changedFields = $this->getChangedFields(true, 2);
697
-		if(isset($changedFields['CVSPath']) || isset($changedFields['Name'])) {
697
+		if (isset($changedFields['CVSPath']) || isset($changedFields['Name'])) {
698 698
 			$this->cloneRepo();
699 699
 		}
700 700
 	}
@@ -706,22 +706,22 @@  discard block
 block discarded – undo
706 706
 		parent::onAfterDelete();
707 707
 
708 708
 		// Delete related environments
709
-		foreach($this->Environments() as $env) {
709
+		foreach ($this->Environments() as $env) {
710 710
 			$env->delete();
711 711
 		}
712 712
 
713 713
 		// Delete local repository
714
-		if(file_exists($this->getLocalCVSPath())) {
714
+		if (file_exists($this->getLocalCVSPath())) {
715 715
 			Filesystem::removeFolder($this->getLocalCVSPath());
716 716
 		}
717 717
 
718 718
 		// Delete project template
719
-		if(file_exists($this->getProjectFolderPath()) && Config::inst()->get('DNEnvironment', 'allow_web_editing')) {
719
+		if (file_exists($this->getProjectFolderPath()) && Config::inst()->get('DNEnvironment', 'allow_web_editing')) {
720 720
 			Filesystem::removeFolder($this->getProjectFolderPath());
721 721
 		}
722 722
 
723 723
 		// Delete the deploy key
724
-		if(file_exists($this->getKeyDir())) {
724
+		if (file_exists($this->getKeyDir())) {
725 725
 			Filesystem::removeFolder($this->getKeyDir());
726 726
 		}
727 727
 	}
@@ -734,7 +734,7 @@  discard block
 block discarded – undo
734 734
 	public function getPublicKey() {
735 735
 		$key = $this->getPublicKeyPath();
736 736
 
737
-		if(file_exists($key)) {
737
+		if (file_exists($key)) {
738 738
 			return trim(file_get_contents($key));
739 739
 		}
740 740
 	}
@@ -745,8 +745,8 @@  discard block
 block discarded – undo
745 745
 	 * @return string|null
746 746
 	 */
747 747
 	public function getPublicKeyPath() {
748
-		if($privateKey = $this->getPrivateKeyPath()) {
749
-			return $privateKey . '.pub';
748
+		if ($privateKey = $this->getPrivateKeyPath()) {
749
+			return $privateKey.'.pub';
750 750
 		}
751 751
 		return null;
752 752
 	}
@@ -758,10 +758,10 @@  discard block
 block discarded – undo
758 758
 	 */
759 759
 	public function getPrivateKeyPath() {
760 760
 		$keyDir = $this->getKeyDir();
761
-		if(!empty($keyDir)) {
761
+		if (!empty($keyDir)) {
762 762
 			$filter = FileNameFilter::create();
763 763
 			$name = $filter->filter($this->Name);
764
-			return $keyDir . '/' . $name;
764
+			return $keyDir.'/'.$name;
765 765
 		}
766 766
 		return null;
767 767
 	}
@@ -773,14 +773,14 @@  discard block
 block discarded – undo
773 773
 	 */
774 774
 	public function getKeyDir() {
775 775
 		$keyDir = $this->DNData()->getKeyDir();
776
-		if(!$keyDir) {
776
+		if (!$keyDir) {
777 777
 			return null;
778 778
 		}
779 779
 
780 780
 		$filter = FileNameFilter::create();
781 781
 		$name = $filter->filter($this->Name);
782 782
 
783
-		return $this->DNData()->getKeyDir() . '/' . $name;
783
+		return $this->DNData()->getKeyDir().'/'.$name;
784 784
 	}
785 785
 
786 786
 	/**
@@ -790,7 +790,7 @@  discard block
 block discarded – undo
790 790
 	 * @param GridField $environments
791 791
 	 */
792 792
 	protected function setEnvironmentFields(&$fields, $environments) {
793
-		if(!$environments) {
793
+		if (!$environments) {
794 794
 			return;
795 795
 		}
796 796
 
@@ -799,7 +799,7 @@  discard block
 block discarded – undo
799 799
 		$environments->getConfig()->removeComponentsByType('GridFieldAddExistingAutocompleter');
800 800
 		$environments->getConfig()->removeComponentsByType('GridFieldDeleteAction');
801 801
 		$environments->getConfig()->removeComponentsByType('GridFieldPageCount');
802
-		if(Config::inst()->get('DNEnvironment', 'allow_web_editing')) {
802
+		if (Config::inst()->get('DNEnvironment', 'allow_web_editing')) {
803 803
 			$addNewRelease = new GridFieldAddNewButton('toolbar-header-right');
804 804
 			$addNewRelease->setButtonName('Add');
805 805
 			$environments->getConfig()->addComponent($addNewRelease);
@@ -815,7 +815,7 @@  discard block
 block discarded – undo
815 815
 	 */
816 816
 	public function getRepositoryURL() {
817 817
 		$showUrl = Config::inst()->get($this->class, 'show_repository_url');
818
-		if($showUrl) {
818
+		if ($showUrl) {
819 819
 			return $this->CVSPath;
820 820
 		}
821 821
 	}
@@ -867,9 +867,9 @@  discard block
 block discarded – undo
867 867
 		$interfaces = $this->config()->repository_interfaces;
868 868
 
869 869
 		/* Look for each whitelisted hostname */
870
-		foreach($interfaces as $host => $interface) {
870
+		foreach ($interfaces as $host => $interface) {
871 871
 			/* See if the CVS Path is for this hostname, followed by some junk (maybe a port), then the path */
872
-			if(preg_match('{^[^.]*' . $host . '(.*?)([/a-zA-Z].+)}', $this->CVSPath, $match)) {
872
+			if (preg_match('{^[^.]*'.$host.'(.*?)([/a-zA-Z].+)}', $this->CVSPath, $match)) {
873 873
 
874 874
 				$path = $match[2];
875 875
 
@@ -879,13 +879,13 @@  discard block
 block discarded – undo
879 879
 
880 880
 				$components = explode('.', $host);
881 881
 
882
-				foreach($regex as $pattern => $replacement) {
883
-					$path = preg_replace('/' . $pattern . '/', $replacement, $path);
882
+				foreach ($regex as $pattern => $replacement) {
883
+					$path = preg_replace('/'.$pattern.'/', $replacement, $path);
884 884
 				}
885 885
 
886
-				$uxurl = Controller::join_links($scheme . '://', $host, $path);
886
+				$uxurl = Controller::join_links($scheme.'://', $host, $path);
887 887
 
888
-				if(array_key_exists('commit', $interface) && $interface['commit'] == false) {
888
+				if (array_key_exists('commit', $interface) && $interface['commit'] == false) {
889 889
 					$commiturl = false;
890 890
 				} else {
891 891
 					$commiturl = Controller::join_links(
@@ -929,7 +929,7 @@  discard block
 block discarded – undo
929 929
 	 * @return SS_List
930 930
 	 */
931 931
 	public function whoIsAllowedAny($codes) {
932
-		if(!is_array($codes)) $codes = array($codes);
932
+		if (!is_array($codes)) $codes = array($codes);
933 933
 
934 934
 		$SQLa_codes = Convert::raw2sql($codes);
935 935
 		$SQL_codes = join("','", $SQLa_codes);
@@ -968,11 +968,11 @@  discard block
 block discarded – undo
968 968
 	 */
969 969
 	public function groupAllowed($permissionCode, Group $group) {
970 970
 		$viewers = $this->Viewers();
971
-		if(!$viewers->find('ID', $group->ID)) {
971
+		if (!$viewers->find('ID', $group->ID)) {
972 972
 			return false;
973 973
 		}
974 974
 		$groups = Permission::get_groups_by_permission($permissionCode);
975
-		if(!$groups->find('ID', $group->ID)) {
975
+		if (!$groups->find('ID', $group->ID)) {
976 976
 			return false;
977 977
 		}
978 978
 		return true;
@@ -991,10 +991,10 @@  discard block
 block discarded – undo
991 991
 			$member = Member::currentUser();
992 992
 		}
993 993
 
994
-		if(Permission::checkMember($member, 'ADMIN')) return true;
994
+		if (Permission::checkMember($member, 'ADMIN')) return true;
995 995
 
996 996
 		$hits = $this->whoIsAllowedAny($codes)->filter('Member.ID', $member->ID)->count();
997
-		return ($hits>0 ? true : false);
997
+		return ($hits > 0 ? true : false);
998 998
 	}
999 999
 
1000 1000
 	/**
@@ -1003,7 +1003,7 @@  discard block
 block discarded – undo
1003 1003
 	 * @return bool
1004 1004
 	 */
1005 1005
 	public function isProjectReady() {
1006
-		if($this->getRunningInitialEnvironmentCreations()->count() > 0) {
1006
+		if ($this->getRunningInitialEnvironmentCreations()->count() > 0) {
1007 1007
 			// We're still creating the initial environments for this project so we're
1008 1008
 			// not quite done
1009 1009
 			return false;
@@ -1012,13 +1012,13 @@  discard block
 block discarded – undo
1012 1012
 		// Provide a hook for further checks. Logic stolen from
1013 1013
 		// {@see DataObject::extendedCan()}
1014 1014
 		$isDone = $this->extend('isProjectReady');
1015
-		if($isDone && is_array($isDone)) {
1015
+		if ($isDone && is_array($isDone)) {
1016 1016
 			$isDone = array_filter($isDone, function($val) {
1017 1017
 				return !is_null($val);
1018 1018
 			});
1019 1019
 
1020 1020
 			// If anything returns false then we're not ready.
1021
-			if($isDone) return min($isDone);
1021
+			if ($isDone) return min($isDone);
1022 1022
 		}
1023 1023
 
1024 1024
 		return true;
@@ -1068,25 +1068,25 @@  discard block
 block discarded – undo
1068 1068
 	 */
1069 1069
 	protected function validate() {
1070 1070
 		$validation = parent::validate();
1071
-		if($validation->valid()) {
1072
-			if(empty($this->Name)) {
1071
+		if ($validation->valid()) {
1072
+			if (empty($this->Name)) {
1073 1073
 				return $validation->error('The stack must have a name.');
1074 1074
 			}
1075 1075
 
1076 1076
 			// The name is used to build filepaths so should be restricted
1077
-			if(!preg_match('/^[a-zA-Z0-9][a-zA-Z0-9\-\_]+$/', $this->Name)) {
1077
+			if (!preg_match('/^[a-zA-Z0-9][a-zA-Z0-9\-\_]+$/', $this->Name)) {
1078 1078
 				return $validation->error('Project name can only contain alphanumeric, hyphens and underscores.');
1079 1079
 			}
1080 1080
 
1081
-			if(empty($this->CVSPath)) {
1081
+			if (empty($this->CVSPath)) {
1082 1082
 				return $validation->error('You must provide a repository URL.');
1083 1083
 			}
1084 1084
 
1085 1085
 			$existing = DNProject::get()->filter('Name', $this->Name);
1086
-			if($this->ID) {
1086
+			if ($this->ID) {
1087 1087
 				$existing = $existing->exclude('ID', $this->ID);
1088 1088
 			}
1089
-			if($existing->count() > 0) {
1089
+			if ($existing->count() > 0) {
1090 1090
 				return $validation->error('A stack already exists with that name.');
1091 1091
 			}
1092 1092
 		}
@@ -1099,10 +1099,10 @@  discard block
 block discarded – undo
1099 1099
 	 * @return bool
1100 1100
 	 */
1101 1101
 	public function canCreate($member = null) {
1102
-		if(!$member) $member = Member::currentUser();
1103
-		if(!$member) return false;
1102
+		if (!$member) $member = Member::currentUser();
1103
+		if (!$member) return false;
1104 1104
 
1105
-		if(Permission::checkMember($member, 'ADMIN')) {
1105
+		if (Permission::checkMember($member, 'ADMIN')) {
1106 1106
 			return true;
1107 1107
 		}
1108 1108
 
Please login to merge, or discard this patch.
code/control/DNRoot.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -961,7 +961,7 @@
 block discarded – undo
961 961
 	 * @param array $data
962 962
 	 * @param Form $form
963 963
 	 *
964
-	 * @return bool|HTMLText|SS_HTTPResponse
964
+	 * @return SS_HTTPResponse|null
965 965
 	 */
966 966
 	public function doCreateEnvironment($data, Form $form) {
967 967
 		$this->setCurrentActionType(self::ACTION_ENVIRONMENTS);
Please login to merge, or discard this patch.
Spacing   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
 		Requirements::javascript('deploynaut/javascript/material.js');
179 179
 
180 180
 		// Load the buildable dependencies only if not loaded centrally.
181
-		if (!is_dir(BASE_PATH . DIRECTORY_SEPARATOR . 'static')) {
181
+		if (!is_dir(BASE_PATH.DIRECTORY_SEPARATOR.'static')) {
182 182
 			if (\Director::isDev()) {
183 183
 				\Requirements::javascript('deploynaut/static/bundle-debug.js');
184 184
 			} else {
@@ -242,7 +242,7 @@  discard block
 block discarded – undo
242 242
 		}
243 243
 
244 244
 		// Block framework jquery
245
-		Requirements::block(FRAMEWORK_DIR . '/thirdparty/jquery/jquery.js');
245
+		Requirements::block(FRAMEWORK_DIR.'/thirdparty/jquery/jquery.js');
246 246
 
247 247
 		self::include_requirements();
248 248
 	}
@@ -261,7 +261,7 @@  discard block
 block discarded – undo
261 261
 	 * @return \SS_HTTPResponse
262 262
 	 */
263 263
 	public function index(SS_HTTPRequest $request) {
264
-		return $this->redirect($this->Link() . 'projects/');
264
+		return $this->redirect($this->Link().'projects/');
265 265
 	}
266 266
 
267 267
 	/**
@@ -389,7 +389,7 @@  discard block
 block discarded – undo
389 389
 		// Framing an environment as a "group of people with download access"
390 390
 		// makes more sense to the user here, while still allowing us to enforce
391 391
 		// environment specific restrictions on downloading the file later on.
392
-		$envs = $project->DNEnvironmentList()->filterByCallback(function ($item) {
392
+		$envs = $project->DNEnvironmentList()->filterByCallback(function($item) {
393 393
 			return $item->canUploadArchive();
394 394
 		});
395 395
 		$envsMap = [];
@@ -421,7 +421,7 @@  discard block
 block discarded – undo
421 421
 		$form->disableSecurityToken();
422 422
 		$form->addExtraClass('fields-wide');
423 423
 		// Tweak the action so it plays well with our fake URL structure.
424
-		$form->setFormAction($project->Link() . '/UploadSnapshotForm');
424
+		$form->setFormAction($project->Link().'/UploadSnapshotForm');
425 425
 
426 426
 		return $form;
427 427
 	}
@@ -442,7 +442,7 @@  discard block
 block discarded – undo
442 442
 		}
443 443
 
444 444
 		$validEnvs = $project->DNEnvironmentList()
445
-			->filterByCallback(function ($item) {
445
+			->filterByCallback(function($item) {
446 446
 				return $item->canUploadArchive();
447 447
 			});
448 448
 
@@ -471,9 +471,9 @@  discard block
 block discarded – undo
471 471
 		$dataArchive->DataTransfers()->add($dataTransfer);
472 472
 		$form->saveInto($dataArchive);
473 473
 		$dataArchive->write();
474
-		$workingDir = TEMP_FOLDER . DIRECTORY_SEPARATOR . 'deploynaut-transfer-' . $dataTransfer->ID;
474
+		$workingDir = TEMP_FOLDER.DIRECTORY_SEPARATOR.'deploynaut-transfer-'.$dataTransfer->ID;
475 475
 
476
-		$cleanupFn = function () use ($workingDir, $dataTransfer, $dataArchive) {
476
+		$cleanupFn = function() use ($workingDir, $dataTransfer, $dataArchive) {
477 477
 			$process = new AbortableProcess(sprintf('rm -rf %s', escapeshellarg($workingDir)));
478 478
 			$process->setTimeout(120);
479 479
 			$process->run();
@@ -547,7 +547,7 @@  discard block
 block discarded – undo
547 547
 		// Framing an environment as a "group of people with download access"
548 548
 		// makes more sense to the user here, while still allowing us to enforce
549 549
 		// environment specific restrictions on downloading the file later on.
550
-		$envs = $project->DNEnvironmentList()->filterByCallback(function ($item) {
550
+		$envs = $project->DNEnvironmentList()->filterByCallback(function($item) {
551 551
 			return $item->canUploadArchive();
552 552
 		});
553 553
 		$envsMap = [];
@@ -573,7 +573,7 @@  discard block
 block discarded – undo
573 573
 		$form->disableSecurityToken();
574 574
 		$form->addExtraClass('fields-wide');
575 575
 		// Tweak the action so it plays well with our fake URL structure.
576
-		$form->setFormAction($project->Link() . '/PostSnapshotForm');
576
+		$form->setFormAction($project->Link().'/PostSnapshotForm');
577 577
 
578 578
 		return $form;
579 579
 	}
@@ -592,7 +592,7 @@  discard block
 block discarded – undo
592 592
 			return $this->project404Response();
593 593
 		}
594 594
 
595
-		$validEnvs = $project->DNEnvironmentList()->filterByCallback(function ($item) {
595
+		$validEnvs = $project->DNEnvironmentList()->filterByCallback(function($item) {
596 596
 			return $item->canUploadArchive();
597 597
 		});
598 598
 
@@ -712,7 +712,7 @@  discard block
 block discarded – undo
712 712
 		$branchName = $request->getVar('name');
713 713
 		$branch = $project->DNBranchList()->byName($branchName);
714 714
 		if (!$branch) {
715
-			return new SS_HTTPResponse("Branch '" . Convert::raw2xml($branchName) . "' not found.", 404);
715
+			return new SS_HTTPResponse("Branch '".Convert::raw2xml($branchName)."' not found.", 404);
716 716
 		}
717 717
 
718 718
 		return $this->render([
@@ -849,7 +849,7 @@  discard block
 block discarded – undo
849 849
 		);
850 850
 
851 851
 		// Tweak the action so it plays well with our fake URL structure.
852
-		$form->setFormAction($project->Link() . '/CreateEnvironmentForm');
852
+		$form->setFormAction($project->Link().'/CreateEnvironmentForm');
853 853
 
854 854
 		return $form;
855 855
 	}
@@ -882,7 +882,7 @@  discard block
 block discarded – undo
882 882
 		$job->write();
883 883
 		$job->start();
884 884
 
885
-		return $this->redirect($project->Link('createenv') . '/' . $job->ID);
885
+		return $this->redirect($project->Link('createenv').'/'.$job->ID);
886 886
 	}
887 887
 
888 888
 	/**
@@ -1080,7 +1080,7 @@  discard block
 block discarded – undo
1080 1080
 			return $body;
1081 1081
 		}
1082 1082
 
1083
-		$form->setFormAction($this->getRequest()->getURL() . '/DeployForm');
1083
+		$form->setFormAction($this->getRequest()->getURL().'/DeployForm');
1084 1084
 		return $form;
1085 1085
 	}
1086 1086
 
@@ -1346,7 +1346,7 @@  discard block
 block discarded – undo
1346 1346
 		$deployment->getMachine()->apply(DNDeployment::TR_QUEUE);
1347 1347
 
1348 1348
 		return json_encode([
1349
-			'url' => Director::absoluteBaseURL() . $deployment->Link()
1349
+			'url' => Director::absoluteBaseURL().$deployment->Link()
1350 1350
 		], JSON_PRETTY_PRINT);
1351 1351
 	}
1352 1352
 
@@ -1469,7 +1469,7 @@  discard block
 block discarded – undo
1469 1469
 	 */
1470 1470
 	public function getDataTransferForm(SS_HTTPRequest $request = null) {
1471 1471
 		// Performs canView permission check by limiting visible projects
1472
-		$envs = $this->getCurrentProject()->DNEnvironmentList()->filterByCallback(function ($item) {
1472
+		$envs = $this->getCurrentProject()->DNEnvironmentList()->filterByCallback(function($item) {
1473 1473
 			return $item->canBackup();
1474 1474
 		});
1475 1475
 
@@ -1491,7 +1491,7 @@  discard block
 block discarded – undo
1491 1491
 					->addExtraClass('btn')
1492 1492
 			)
1493 1493
 		);
1494
-		$form->setFormAction($this->getRequest()->getURL() . '/DataTransferForm');
1494
+		$form->setFormAction($this->getRequest()->getURL().'/DataTransferForm');
1495 1495
 
1496 1496
 		return $form;
1497 1497
 	}
@@ -1517,12 +1517,12 @@  discard block
 block discarded – undo
1517 1517
 		// Validate direction.
1518 1518
 		if ($data['Direction'] == 'get') {
1519 1519
 			$validEnvs = $this->getCurrentProject()->DNEnvironmentList()
1520
-				->filterByCallback(function ($item) {
1520
+				->filterByCallback(function($item) {
1521 1521
 					return $item->canBackup();
1522 1522
 				});
1523 1523
 		} else if ($data['Direction'] == 'push') {
1524 1524
 			$validEnvs = $this->getCurrentProject()->DNEnvironmentList()
1525
-				->filterByCallback(function ($item) {
1525
+				->filterByCallback(function($item) {
1526 1526
 					return $item->canRestore();
1527 1527
 				});
1528 1528
 		} else {
@@ -1653,7 +1653,7 @@  discard block
 block discarded – undo
1653 1653
 
1654 1654
 		// Performs canView permission check by limiting visible projects
1655 1655
 		$project = $this->getCurrentProject();
1656
-		$envs = $project->DNEnvironmentList()->filterByCallback(function ($item) {
1656
+		$envs = $project->DNEnvironmentList()->filterByCallback(function($item) {
1657 1657
 			return $item->canRestore();
1658 1658
 		});
1659 1659
 
@@ -1692,7 +1692,7 @@  discard block
 block discarded – undo
1692 1692
 					->addExtraClass('btn')
1693 1693
 			)
1694 1694
 		);
1695
-		$form->setFormAction($project->Link() . '/DataTransferRestoreForm');
1695
+		$form->setFormAction($project->Link().'/DataTransferRestoreForm');
1696 1696
 
1697 1697
 		return $form;
1698 1698
 	}
@@ -1790,7 +1790,7 @@  discard block
 block discarded – undo
1790 1790
 					->addExtraClass('btn')
1791 1791
 			)
1792 1792
 		);
1793
-		$form->setFormAction($project->Link() . '/DeleteForm');
1793
+		$form->setFormAction($project->Link().'/DeleteForm');
1794 1794
 
1795 1795
 		return $form;
1796 1796
 	}
@@ -1896,7 +1896,7 @@  discard block
 block discarded – undo
1896 1896
 					->addExtraClass('btn')
1897 1897
 			)
1898 1898
 		);
1899
-		$form->setFormAction($this->getCurrentProject()->Link() . '/MoveForm');
1899
+		$form->setFormAction($this->getCurrentProject()->Link().'/MoveForm');
1900 1900
 
1901 1901
 		return $form;
1902 1902
 	}
@@ -2157,7 +2157,7 @@  discard block
 block discarded – undo
2157 2157
 		$transfers = DNDataTransfer::get()
2158 2158
 			->filter('EnvironmentID', $environments)
2159 2159
 			->filterByCallback(
2160
-				function ($record) {
2160
+				function($record) {
2161 2161
 					return
2162 2162
 						$record->Environment()->canRestore() || // Ensure member can perform an action on the transfers env
2163 2163
 						$record->Environment()->canBackup() ||
@@ -2282,7 +2282,7 @@  discard block
 block discarded – undo
2282 2282
 	 */
2283 2283
 	protected function project404Response() {
2284 2284
 		return new SS_HTTPResponse(
2285
-			"Project '" . Convert::raw2xml($this->getRequest()->param('Project')) . "' not found.",
2285
+			"Project '".Convert::raw2xml($this->getRequest()->param('Project'))."' not found.",
2286 2286
 			404
2287 2287
 		);
2288 2288
 	}
@@ -2292,7 +2292,7 @@  discard block
 block discarded – undo
2292 2292
 	 */
2293 2293
 	protected function environment404Response() {
2294 2294
 		$envName = Convert::raw2xml($this->getRequest()->param('Environment'));
2295
-		return new SS_HTTPResponse("Environment '" . $envName . "' not found.", 404);
2295
+		return new SS_HTTPResponse("Environment '".$envName."' not found.", 404);
2296 2296
 	}
2297 2297
 
2298 2298
 	/**
Please login to merge, or discard this patch.
code/jobs/PingJob.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
 	 * Do the actual job by calling the appropiate backend
32 32
 	 */
33 33
 	public function perform() {
34
-		echo "[-] PingJob starting" . PHP_EOL;
34
+		echo "[-] PingJob starting".PHP_EOL;
35 35
 		$log = new DeploynautLogFile($this->args['logfile']);
36 36
 
37 37
 		$ping = DNPing::get()->byID($this->args['pingID']);
Please login to merge, or discard this patch.
code/model/jobs/DNDeployment.php 2 patches
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -205,12 +205,16 @@
 block discarded – undo
205 205
 	 */
206 206
 	public function getFullDeployMessages() {
207 207
 		$strategy = $this->getDeploymentStrategy();
208
-		if ($strategy->getActionCode()!=='full') return null;
208
+		if ($strategy->getActionCode()!=='full') {
209
+			return null;
210
+		}
209 211
 
210 212
 		$changes = $strategy->getChangesModificationNeeded();
211 213
 		$messages = [];
212 214
 		foreach ($changes as $change => $details) {
213
-			if ($change==='Code version') continue;
215
+			if ($change==='Code version') {
216
+				continue;
217
+			}
214 218
 
215 219
 			$messages[] = [
216 220
 				'Flag' => sprintf(
Please login to merge, or discard this patch.
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
 	}
102 102
 
103 103
 	public function LogLink() {
104
-		return $this->Link() . '/log';
104
+		return $this->Link().'/log';
105 105
 	}
106 106
 
107 107
 	public function canView($member = null) {
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
 	 * @return \Gitonomy\Git\Repository|null
148 148
 	 */
149 149
 	public function getRepository() {
150
-		if(!$this->SHA) {
150
+		if (!$this->SHA) {
151 151
 			return null;
152 152
 		}
153 153
 		return $this->Environment()->Project()->getRepository();
@@ -160,10 +160,10 @@  discard block
 block discarded – undo
160 160
 	 */
161 161
 	public function getCommit() {
162 162
 		$repo = $this->getRepository();
163
-		if($repo) {
163
+		if ($repo) {
164 164
 			try {
165 165
 				return $repo->getCommit($this->SHA);
166
-			} catch(Gitonomy\Git\Exception\ReferenceNotFoundException $ex) {
166
+			} catch (Gitonomy\Git\Exception\ReferenceNotFoundException $ex) {
167 167
 				return null;
168 168
 			}
169 169
 		}
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
 		if (!$interface) {
189 189
 			return null;
190 190
 		}
191
-		return $interface->CommitURL . '/' . $this->SHA;
191
+		return $interface->CommitURL.'/'.$this->SHA;
192 192
 	}
193 193
 
194 194
 	/**
@@ -198,10 +198,10 @@  discard block
 block discarded – undo
198 198
 	 */
199 199
 	public function getCommitMessage() {
200 200
 		$commit = $this->getCommit();
201
-		if($commit) {
201
+		if ($commit) {
202 202
 			try {
203 203
 				return Convert::raw2xml($commit->getMessage());
204
-			} catch(Gitonomy\Git\Exception\ReferenceNotFoundException $e) {
204
+			} catch (Gitonomy\Git\Exception\ReferenceNotFoundException $e) {
205 205
 				return null;
206 206
 			}
207 207
 		}
@@ -216,10 +216,10 @@  discard block
 block discarded – undo
216 216
 	public function getTags() {
217 217
 		$returnTags = array();
218 218
 		$repo = $this->getRepository();
219
-		if($repo) {
219
+		if ($repo) {
220 220
 			$tags = $repo->getReferences()->resolveTags($this->SHA);
221
-			if(!empty($tags)) {
222
-				foreach($tags as $tag) {
221
+			if (!empty($tags)) {
222
+				foreach ($tags as $tag) {
223 223
 					$field = Varchar::create('Tag', '255');
224 224
 					$field->setValue($tag->getName());
225 225
 					$returnTags[] = $field;
@@ -237,12 +237,12 @@  discard block
 block discarded – undo
237 237
 	 */
238 238
 	public function getFullDeployMessages() {
239 239
 		$strategy = $this->getDeploymentStrategy();
240
-		if ($strategy->getActionCode()!=='full') return null;
240
+		if ($strategy->getActionCode() !== 'full') return null;
241 241
 
242 242
 		$changes = $strategy->getChangesModificationNeeded();
243 243
 		$messages = [];
244 244
 		foreach ($changes as $change => $details) {
245
-			if ($change==='Code version') continue;
245
+			if ($change === 'Code version') continue;
246 246
 
247 247
 			$messages[] = [
248 248
 				'Flag' => sprintf(
@@ -270,7 +270,7 @@  discard block
 block discarded – undo
270 270
 	 */
271 271
 	public function getTag() {
272 272
 		$tags = $this->getTags();
273
-		if($tags->count() > 0) {
273
+		if ($tags->count() > 0) {
274 274
 			return $tags->last();
275 275
 		}
276 276
 		return null;
@@ -295,7 +295,7 @@  discard block
 block discarded – undo
295 295
 	public function getChanges() {
296 296
 		$list = new ArrayList();
297 297
 		$strategy = $this->getDeploymentStrategy();
298
-		foreach($strategy->getChanges() as $name => $change) {
298
+		foreach ($strategy->getChanges() as $name => $change) {
299 299
 			$changed = (isset($change['from']) && isset($change['to'])) ? $change['from'] != $change['to'] : null;
300 300
 			$description = isset($change['description']) ? $change['description'] : '';
301 301
 			$compareUrl = null;
@@ -345,11 +345,11 @@  discard block
 block discarded – undo
345 345
 		// Make sure we use the SHA as it was written into this DNDeployment.
346 346
 		$args['sha'] = $this->SHA;
347 347
 
348
-		if(!$this->DeployerID) {
348
+		if (!$this->DeployerID) {
349 349
 			$this->DeployerID = Member::currentUserID();
350 350
 		}
351 351
 
352
-		if($this->DeployerID) {
352
+		if ($this->DeployerID) {
353 353
 			$deployer = $this->Deployer();
354 354
 			$message = sprintf(
355 355
 				'Deploy to %s initiated by %s (%s), with IP address %s',
Please login to merge, or discard this patch.
code/control/DeployForm.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
 				substr($sha, 0, 8),
74 74
 				$branch->LastUpdated()->TimeDiff()
75 75
 			);
76
-			$branches[$sha . '-' . $name] = $branchValue;
76
+			$branches[$sha.'-'.$name] = $branchValue;
77 77
 		}
78 78
 
79 79
 		// Tags
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 				substr($sha, 0, 8),
87 87
 				$branch->LastUpdated()->TimeDiff()
88 88
 			);
89
-			$tags[$sha . '-' . $tag] = $tagValue;
89
+			$tags[$sha.'-'.$tag] = $tagValue;
90 90
 		}
91 91
 		$tags = array_reverse($tags);
92 92
 
Please login to merge, or discard this patch.
code/model/StateMachineFactory.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,9 @@
 block discarded – undo
58 58
 
59 59
 	protected function addHandlers($machine) {
60 60
 		$class = get_class($machine->getObject());
61
-		if (empty($this->config()->handlers[$class])) return;
61
+		if (empty($this->config()->handlers[$class])) {
62
+			return;
63
+		}
62 64
 
63 65
 		$transitions = $this->config()->handlers[$class];
64 66
 		foreach ($transitions as $transName => $handlers) {
Please login to merge, or discard this patch.
code/control/DeployDispatcher.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
 	 *
47 47
 	 * @param \SS_HTTPRequest $request
48 48
 	 *
49
-	 * @return \HTMLText|\SS_HTTPResponse
49
+	 * @return SS_HTTPResponse|null
50 50
 	 */
51 51
 	public function index(\SS_HTTPRequest $request) {
52 52
 		return $this->redirect(\Controller::join_links($this->Link(), 'history'), 302);
Please login to merge, or discard this patch.