Completed
Pull Request — master (#579)
by Mateusz
07:37
created
code/control/DNDeploymentDispatcher.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use Finite\StateMachine\StateMachine;
4
-
5 3
 class DNDeploymentDispatcher extends Dispatcher {
6 4
 
7 5
 	const ALLOW_DNDEPLOYMENT_APPROVE = 'ALLOW_DNDEPLOYMENT_APPROVE';
Please login to merge, or discard this patch.
code/model/jobs/DNDeployment.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -53,13 +53,13 @@
 block discarded – undo
53 53
 	);
54 54
 
55 55
 	public function getFiniteState() {
56
-        return $this->State;
57
-    }
56
+		return $this->State;
57
+	}
58 58
 
59
-    public function setFiniteState($state) {
60
-        $this->State = $state;
59
+	public function setFiniteState($state) {
60
+		$this->State = $state;
61 61
 		$this->write();
62
-    }
62
+	}
63 63
 
64 64
 	public function getStatus() {
65 65
 		return $this->State;
Please login to merge, or discard this patch.