@@ -8,10 +8,10 @@ |
||
| 8 | 8 | */ |
| 9 | 9 | class Placeholder { |
| 10 | 10 | private static $instance; |
| 11 | - private function __construct(){} |
|
| 11 | + private function __construct() {} |
|
| 12 | 12 | public static function get() |
| 13 | 13 | { |
| 14 | - if(static::$instance === null) |
|
| 14 | + if (static::$instance === null) |
|
| 15 | 15 | static::$instance = new Placeholder; |
| 16 | 16 | return static::$instance; |
| 17 | 17 | } |