@@ -19,7 +19,7 @@ |
||
| 19 | 19 | /** |
| 20 | 20 | * {@inheritdoc} |
| 21 | 21 | */ |
| 22 | - public function __construct($filePath) |
|
| 22 | + public function __construct ($filePath) |
|
| 23 | 23 | { |
| 24 | 24 | parent::__construct($filePath); |
| 25 | 25 | |
@@ -19,7 +19,7 @@ |
||
| 19 | 19 | /** |
| 20 | 20 | * {@inheritdoc} |
| 21 | 21 | */ |
| 22 | - public function __construct($filePath) |
|
| 22 | + public function __construct ($filePath) |
|
| 23 | 23 | { |
| 24 | 24 | parent::__construct($filePath); |
| 25 | 25 | |
@@ -14,12 +14,12 @@ |
||
| 14 | 14 | */ |
| 15 | 15 | private $iterators; |
| 16 | 16 | |
| 17 | - public function __construct($string) |
|
| 17 | + public function __construct ($string) |
|
| 18 | 18 | { |
| 19 | 19 | $this->evaluated = $string; |
| 20 | 20 | } |
| 21 | 21 | |
| 22 | - public function __toString() |
|
| 22 | + public function __toString () |
|
| 23 | 23 | { |
| 24 | 24 | return $this->getEvaluated(); |
| 25 | 25 | } |
@@ -30,7 +30,7 @@ |
||
| 30 | 30 | */ |
| 31 | 31 | protected $fs; |
| 32 | 32 | |
| 33 | - public function setUp() |
|
| 33 | + public function setUp () |
|
| 34 | 34 | { |
| 35 | 35 | $this->dummyFile = vfsStream::newFile('foo.html.twig'); |
| 36 | 36 | $this->rootDir = vfsStream::setup(); |
@@ -81,7 +81,7 @@ |
||
| 81 | 81 | throw new \BadMethodCallException(); |
| 82 | 82 | } |
| 83 | 83 | |
| 84 | - public function __get($name) |
|
| 84 | + public function __get ($name) |
|
| 85 | 85 | { |
| 86 | 86 | if ($this->object->isMagicGet($name)) |
| 87 | 87 | { |
@@ -88,6 +88,6 @@ |
||
| 88 | 88 | return $this->object->$name; |
| 89 | 89 | } |
| 90 | 90 | |
| 91 | - return NULL; |
|
| 91 | + return null; |
|
| 92 | 92 | } |
| 93 | 93 | } |
| 94 | 94 | \ No newline at end of file |