Passed
Push — master ( 9c99b6...17c429 )
by Dāvis
03:17
created
DependencyInjection/Requirement/AbstractRequirement.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,9 +17,9 @@
 block discarded – undo
17 17
 
18 18
     abstract public function getRequirements();
19 19
 
20
-    public function throwException(){
20
+    public function throwException() {
21 21
         $string = '';
22
-        foreach($this->getRequirements() as $requirement){
22
+        foreach ($this->getRequirements() as $requirement) {
23 23
             $string .= $requirement.'\n';
24 24
         }
25 25
 
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,9 +17,10 @@
 block discarded – undo
17 17
 
18 18
     abstract public function getRequirements();
19 19
 
20
-    public function throwException(){
20
+    public function throwException()
21
+    {
21 22
         $string = '';
22
-        foreach($this->getRequirements() as $requirement){
23
+        foreach($this->getRequirements() as $requirement) {
23 24
             $string .= $requirement.'\n';
24 25
         }
25 26
 
Please login to merge, or discard this patch.