@@ -5,7 +5,7 @@ |
||
5 | 5 | use Core\Controller; |
6 | 6 | |
7 | 7 | class Debug extends Controller { |
8 | - public function index(){ |
|
8 | + public function index() { |
|
9 | 9 | |
10 | 10 | } |
11 | 11 | } |
12 | 12 | \ No newline at end of file |
@@ -47,10 +47,10 @@ discard block |
||
47 | 47 | $twigOptions = []; |
48 | 48 | if (!Config::DEV_ENVIRONMENT) { |
49 | 49 | $twigOptions = [ |
50 | - 'cache' => dirname(__DIR__) . '/Cache' |
|
50 | + 'cache' => dirname(__DIR__).'/Cache' |
|
51 | 51 | ]; |
52 | 52 | } |
53 | - $loader = new \Twig_Loader_Filesystem(dirname(__DIR__) . '/App/Views'); |
|
53 | + $loader = new \Twig_Loader_Filesystem(dirname(__DIR__).'/App/Views'); |
|
54 | 54 | $twig = new \Twig_Environment($loader, $twigOptions); |
55 | 55 | |
56 | 56 | return $twig; |
@@ -65,13 +65,13 @@ discard block |
||
65 | 65 | if ($this->dbh) { |
66 | 66 | return $this->dbh; |
67 | 67 | } |
68 | - $dsn = "mysql:host=" . Config::DB_HOST . ";dbname=" . Config::DB_NAME . ";charset=utf8"; //Creating the Data Source name |
|
68 | + $dsn = "mysql:host=".Config::DB_HOST.";dbname=".Config::DB_NAME.";charset=utf8"; //Creating the Data Source name |
|
69 | 69 | $opt = [ |
70 | 70 | PDO::ATTR_PERSISTENT => true, |
71 | 71 | PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION, |
72 | 72 | PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_OBJ |
73 | 73 | ]; |
74 | - $this->dbh = new PDO($dsn, Config::DB_USER, Config::DB_PASSWORD, $opt);; |
|
74 | + $this->dbh = new PDO($dsn, Config::DB_USER, Config::DB_PASSWORD, $opt); ; |
|
75 | 75 | return $this->dbh; |
76 | 76 | } |
77 | 77 |
@@ -24,8 +24,8 @@ |
||
24 | 24 | |
25 | 25 | } |
26 | 26 | |
27 | - protected function onlyAdmin(){ |
|
28 | - if(!$this->auth->isAdmin()){ |
|
27 | + protected function onlyAdmin() { |
|
28 | + if (!$this->auth->isAdmin()) { |
|
29 | 29 | $this->alertBox->setAlert("Only admins can access this", 'error'); |
30 | 30 | $this->container->getResponse()->redirect('/admin'); |
31 | 31 | } |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | default: |
24 | 24 | $headerType = 'text/html'; |
25 | 25 | } |
26 | - $contentType = 'Content-Type: ' . $headerType; |
|
26 | + $contentType = 'Content-Type: '.$headerType; |
|
27 | 27 | |
28 | 28 | header($contentType); |
29 | 29 | } |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | } |
42 | 42 | } |
43 | 43 | |
44 | - header("location: /" . $url); |
|
44 | + header("location: /".$url); |
|
45 | 45 | exit(); //after redirect do not execute anything else from the function |
46 | 46 | } |
47 | 47 | } |
48 | 48 | \ No newline at end of file |