| @@ -5,13 +5,12 @@ | ||
| 5 | 5 | /** |
| 6 | 6 | * @return Boxzilla |
| 7 | 7 | */ |
| 8 | 8 | function boxzilla() { |
| 9 | - static $instance; | |
| 9 | + static $instance; | |
| 10 | 10 | |
| 11 | - if( is_null( $instance ) ) { | |
| 12 | - $instance = new Boxzilla(); | |
| 13 | - } | |
| 11 | + if ( is_null( $instance ) ) { | |
| 12 | + $instance = new Boxzilla(); | |
| 13 | + } | |
| 14 | 14 | |
| 15 | - return $instance; | |
| 15 | + return $instance; | |
| 16 | 16 | } |
| 17 | - | |