@@ -4,8 +4,8 @@ discard block |
||
4 | 4 | use \Psr\Http\Message\ServerRequestInterface as Request; |
5 | 5 | use \Psr\Http\Message\ResponseInterface as Response; |
6 | 6 | |
7 | -require __DIR__ . '/../vendor/autoload.php'; |
|
8 | -require_once(__DIR__ . '/../static.js_css.php'); |
|
7 | +require __DIR__.'/../vendor/autoload.php'; |
|
8 | +require_once(__DIR__.'/../static.js_css.php'); |
|
9 | 9 | |
10 | 10 | class WebPage |
11 | 11 | { |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | |
17 | 17 | public function __construct($title) |
18 | 18 | { |
19 | - \Sentry\init(['dsn' => 'https://[email protected]/4283882' ]); |
|
19 | + \Sentry\init(['dsn' => 'https://[email protected]/4283882']); |
|
20 | 20 | $this->settings = \Flipside\Settings::getInstance(); |
21 | 21 | $this->loader = new \Twig\Loader\FilesystemLoader(dirname(__FILE__).'/../templates'); |
22 | 22 | |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | $this->content['css'] = array($uri); |
113 | 113 | return; |
114 | 114 | } |
115 | - array_push($this->content['css'],$uri); |
|
115 | + array_push($this->content['css'], $uri); |
|
116 | 116 | } |
117 | 117 | |
118 | 118 | /** |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | $this->content['js'] = array($uri); |
128 | 128 | return; |
129 | 129 | } |
130 | - array_push($this->content['js'],$uri); |
|
130 | + array_push($this->content['js'], $uri); |
|
131 | 131 | } |
132 | 132 | |
133 | 133 | /** |
@@ -180,7 +180,7 @@ discard block |
||
180 | 180 | { |
181 | 181 | $data['menu'] = $submenu; |
182 | 182 | } |
183 | - $this->content['header']['right'] = array($name => $data)+$this->content['header']['right']; |
|
183 | + $this->content['header']['right'] = array($name => $data) + $this->content['header']['right']; |
|
184 | 184 | } |
185 | 185 | |
186 | 186 | /** Notification that is green for success */ |