Passed
Pull Request — dev (#45)
by Stone
03:55 queued 01:55
created
App/Models/IncludesModel.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,8 +22,8 @@
 block discarded – undo
22 22
         $data = [];
23 23
         //get the categories from database
24 24
         $categories = $this->getResultSet('categories');
25
-        foreach ( $categories as $category) {
26
-            $data +=[
25
+        foreach ($categories as $category) {
26
+            $data += [
27 27
                 $category->category_name => '/category/'.$category->categories_slug
28 28
             ];
29 29
         }
Please login to merge, or discard this patch.
App/Controllers/Debug.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
Core/Container.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -47,10 +47,10 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
Core/AdminController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,8 +24,8 @@
 block discarded – undo
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
         }
Please login to merge, or discard this patch.
Core/Controller.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -86,45 +86,45 @@  discard block
 block discarded – undo
86 86
         $childClassNamespace = new \ReflectionClass(get_class($this));
87 87
         $childClassNamespace = $childClassNamespace->getNamespaceName();
88 88
         //check in classNameSpace, make sure we are not already in App or core
89
-        if (class_exists($childClassNamespace . '\\Modules\\' . $loadModule)) {
90
-            if($childClassNamespace !== 'App\\Modules\\' || $childClassNamespace !== 'Core\\Modules\\'){
91
-                $loadModuleObj = $childClassNamespace . '\\' . $loadModule;
89
+        if (class_exists($childClassNamespace.'\\Modules\\'.$loadModule)) {
90
+            if ($childClassNamespace !== 'App\\Modules\\' || $childClassNamespace !== 'Core\\Modules\\') {
91
+                $loadModuleObj = $childClassNamespace.'\\'.$loadModule;
92 92
                 $found = true;
93 93
             }
94 94
         }
95 95
         //check in app
96
-        if (class_exists('App\\Modules\\' . $loadModule)) {
97
-            if($found && Config::DEV_ENVIRONMENT){
96
+        if (class_exists('App\\Modules\\'.$loadModule)) {
97
+            if ($found && Config::DEV_ENVIRONMENT) {
98 98
                 $this->alertBox->setAlert($loadModule.' already defined in namespace', 'error');
99 99
             }
100
-            if(!$found){
101
-                $loadModuleObj = 'App\\Modules\\' . $loadModule;
100
+            if (!$found) {
101
+                $loadModuleObj = 'App\\Modules\\'.$loadModule;
102 102
                 $found = true;
103 103
             }
104 104
         }
105 105
         //check in core, send error popup if overcharged
106
-        if (class_exists('Core\\Modules\\' . $loadModule)) {
107
-            if($found && Config::DEV_ENVIRONMENT){
106
+        if (class_exists('Core\\Modules\\'.$loadModule)) {
107
+            if ($found && Config::DEV_ENVIRONMENT) {
108 108
                 $this->alertBox->setAlert($loadModule.' already defined in app', 'error');
109 109
             }
110
-            if(!$found){
111
-                $loadModuleObj = 'Core\\Modules\\' . $loadModule;
110
+            if (!$found) {
111
+                $loadModuleObj = 'Core\\Modules\\'.$loadModule;
112 112
                 $found = true;
113 113
             }
114 114
         }
115
-        if(!$found) {
116
-            throw new \ErrorException('module ' . $loadModule . ' does not exist');
115
+        if (!$found) {
116
+            throw new \ErrorException('module '.$loadModule.' does not exist');
117 117
         }
118 118
 
119 119
         //Modules must be children of the Module template
120 120
         if (!is_subclass_of($loadModuleObj, 'Core\Modules\Module')) {
121
-            throw new \ErrorException('Module ' . $loadModuleName . ' must be a sub class of module');
121
+            throw new \ErrorException('Module '.$loadModuleName.' must be a sub class of module');
122 122
         }
123 123
 
124 124
         $loadedModule = new $loadModuleObj($this->container);
125 125
         //we are not allowed to create public modules, they must be a placeholder ready
126 126
         if (!property_exists($this, $loadModuleName)) {
127
-            throw new \ErrorException('the protected or private variable of ' . $loadModuleName . ' is not present');
127
+            throw new \ErrorException('the protected or private variable of '.$loadModuleName.' is not present');
128 128
         }
129 129
         $this->$loadModuleName = $loadedModule;
130 130
     }
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
     public function getView($template)
151 151
     {
152 152
         $twig = $this->container->getTemplate();
153
-        return $twig->render($template . '.twig', $this->data);
153
+        return $twig->render($template.'.twig', $this->data);
154 154
     }
155 155
 
156 156
     /**
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
             $this->devHelper();
172 172
         }
173 173
         $twig = $this->container->getTemplate();
174
-        $twig->display($template . '.twig', $this->data);
174
+        $twig->display($template.'.twig', $this->data);
175 175
     }
176 176
 
177 177
     protected function devHelper($var = '')
Please login to merge, or discard this patch.