Completed
Pull Request — master (#1)
by Saša
04:50
created
src/Entity/Hdd.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,6 +6,6 @@
 block discarded – undo
6 6
 {
7 7
     public function toString()
8 8
     {
9
-        return parent::toString().' GB';
9
+        return parent::toString() . ' GB';
10 10
     }
11 11
 }
Please login to merge, or discard this patch.
src/Entity/Cpu.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,6 +6,6 @@
 block discarded – undo
6 6
 {
7 7
     public function toString()
8 8
     {
9
-        return parent::toString().' MHz';
9
+        return parent::toString() . ' MHz';
10 10
     }
11 11
 }
Please login to merge, or discard this patch.
src/Entity/Ram.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,6 +6,6 @@
 block discarded – undo
6 6
 {
7 7
     public function toString()
8 8
     {
9
-        return parent::toString().' GB';
9
+        return parent::toString() . ' GB';
10 10
     }
11 11
 }
Please login to merge, or discard this patch.
src/Model/ServerModel.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -55,9 +55,9 @@
 block discarded – undo
55 55
     public function toString()
56 56
     {
57 57
         return 'VM('
58
-            .$this->getCpu()->toString().', '
59
-            .$this->getRam()->toString().', '
60
-            .$this->getHdd()->toString().')';
58
+            .$this->getCpu()->toString() . ', '
59
+            .$this->getRam()->toString() . ', '
60
+            .$this->getHdd()->toString() . ')';
61 61
     }
62 62
 
63 63
     /**
Please login to merge, or discard this patch.
src/Model/ServerFarmModel.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -88,13 +88,13 @@
 block discarded – undo
88 88
     public function toString()
89 89
     {
90 90
         $counter = 1;
91
-        $output = 'Server list'.PHP_EOL;
91
+        $output = 'Server list' . PHP_EOL;
92 92
         foreach ($this->servers as $server) {
93
-            $output .= $counter++.'. ';
93
+            $output .= $counter++ . '. ';
94 94
             foreach ($server->getVmArray() as $vmachine) {
95
-                $output .= $vmachine->toString().' ';
95
+                $output .= $vmachine->toString() . ' ';
96 96
             }
97
-            $output .= 'remains '.$server->toString();
97
+            $output .= 'remains ' . $server->toString();
98 98
             $output .= PHP_EOL;
99 99
         }
100 100
 
Please login to merge, or discard this patch.