added spaces (coding convention)

Signed-off-by: Roland Häder <roland@mxchange.org>
This commit is contained in:
Roland Häder 2017-01-27 11:53:56 +01:00 committed by Roland Haeder
parent 951006dd10
commit c2d8738285
No known key found for this signature in database
GPG key ID: B72F8185C6C7BD78
11 changed files with 336 additions and 330 deletions

View file

@ -1,6 +1,7 @@
<?php
if(class_exists('BaseObject'))
if (class_exists('BaseObject')) {
return;
}
require_once('boot.php');
@ -18,8 +19,9 @@ class BaseObject {
* Same as get_app from boot.php
*/
public function get_app() {
if(self::$app)
if (self::$app) {
return self::$app;
}
self::$app = get_app();