@@ -17,9 +17,9 @@ |
||
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 |
@@ -17,9 +17,10 @@ |
||
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 |