Passed
Push — Showing-Posts ( bfc60e...38793a )
by Stone
01:59
created
Core/Dependency/Session.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 block discarded – undo
91 91
      * return the entire session superglobal. mainly for debugging purposes
92 92
      * @return mixed
93 93
      */
94
-    public function getAllSessionVars(){
94
+    public function getAllSessionVars() {
95 95
         return $_SESSION;
96 96
     }
97 97
 
Please login to merge, or discard this patch.
Core/Model.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
      * fetches the result from an executed query
102 102
      * @return array
103 103
      */
104
-    protected function fetchAll(){
104
+    protected function fetchAll() {
105 105
         return $this->stmt->fetchAll();
106 106
     }
107 107
 
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
      * returns a single line from the executed query
110 110
      * @return mixed
111 111
      */
112
-    protected function fetch(){
112
+    protected function fetch() {
113 113
         return $this->stmt->fetch();
114 114
     }
115 115
 
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
             $table = $reflect->getShortName(); //this is to only get the model name, otherwise we get the full namespace
137 137
             //since our models all end with Model, we should remove it.
138 138
             $table = $this->removeFromEnd($table, 'Model');
139
-            $table = $table . 's'; //adding the s since the table should be plural. Might be some special case where the plural isn't just with an s
139
+            $table = $table.'s'; //adding the s since the table should be plural. Might be some special case where the plural isn't just with an s
140 140
             $table = strtolower($table); //the database names are in lowercase
141 141
         }
142 142
 
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
         }
156 156
 
157 157
         //if we are here, then table doesn't exist, check for view
158
-        $view = 'v_' . $table;
158
+        $view = 'v_'.$table;
159 159
         $stmt->bindValue(':table', $view, PDO::PARAM_STR);
160 160
         $stmt->execute();
161 161
         $exists = $stmt->rowCount() > 0; //will return 1 if table exists or 0 if non existant
@@ -176,8 +176,8 @@  discard block
 block discarded – undo
176 176
      * @param $table string the table name
177 177
      * @return string
178 178
      */
179
-    protected function getTablePrefix($table){
180
-        if(Config::TABLE_PREFIX != '')
179
+    protected function getTablePrefix($table) {
180
+        if (Config::TABLE_PREFIX != '')
181 181
         {
182 182
             $table = Config::TABLE_PREFIX.'_'.$table;
183 183
         }
@@ -248,7 +248,7 @@  discard block
 block discarded – undo
248 248
     protected function getRowById($rowId, $table = null): array
249 249
     {
250 250
         $tableName = $this->getTable($table);
251
-        $idName = 'id' . $tableName;
251
+        $idName = 'id'.$tableName;
252 252
         $sql = "SELECT * FROM $tableName WHERE $idName = :rowId";
253 253
         $this->query($sql);
254 254
         $this->bind(':rowId', $rowId);
Please login to merge, or discard this patch.
App/Controllers/Admin/Home.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 {
9 9
     public function index()
10 10
     {
11
-        if(!$this->auth->isUser()){
11
+        if (!$this->auth->isUser()) {
12 12
             $this->alertBox->setAlert("You must be connected to acces the admin interface", 'warning');
13 13
             $this->container->getResponse()->redirect();
14 14
         }
Please login to merge, or discard this patch.
App/Controllers/Admin/Config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
         }
37 37
         if ($success) {
38 38
             $this->alertBox->setAlert('Configuration updates successfully');
39
-        } else {
39
+        }else {
40 40
             $this->alertBox->setAlert('error in configuration update', 'error');
41 41
         }
42 42
         $this->container->getResponse()->redirect('admin/config');
Please login to merge, or discard this patch.
App/Controllers/Ajax/Config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
             if (!$configModel->updateConfig($update->name, $update->value)) {
39 39
                 $result['success'] = false;
40 40
                 $result['errorId'][] = $update->name;
41
-            } else {
41
+            }else {
42 42
                 $result['successId'][] = $update->name;
43 43
             }
44 44
         }
Please login to merge, or discard this patch.
App/Controllers/Login.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
     {
25 25
         $this->session->set('user_role_name', 'Admin');
26 26
         $this->session->set('user_role_level', 2);
27
-        $this->session->set('user_id',1);
27
+        $this->session->set('user_id', 1);
28 28
         $this->alertBox->setAlert('Connected as admin');
29 29
         $this->container->getResponse()->redirect('/admin/');
30 30
     }
Please login to merge, or discard this patch.
App/Controllers/Ajax/ImageUpload.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -46,12 +46,12 @@  discard block
 block discarded – undo
46 46
                 return;
47 47
             }
48 48
 
49
-            $filetowrite = $folder . $tempFile['name'];
49
+            $filetowrite = $folder.$tempFile['name'];
50 50
             move_uploaded_file($tempFile['tmp_name'], $filetowrite);
51 51
 
52 52
             // Respond to the successful upload with JSON.
53 53
             echo json_encode(array('location' => $filetowrite));
54
-        } else {
54
+        }else {
55 55
             // Notify editor that the upload failed
56 56
             echo json_encode(array('error' => 'Upload failed'));
57 57
         }
@@ -79,12 +79,12 @@  discard block
 block discarded – undo
79 79
                 return;
80 80
             }
81 81
 
82
-            $filetowrite = $this->imageFolder . $tempFile['name'];
82
+            $filetowrite = $this->imageFolder.$tempFile['name'];
83 83
             move_uploaded_file($tempFile['tmp_name'], $filetowrite);
84 84
 
85 85
             // Respond to the successful upload with JSON.
86 86
             echo json_encode(array('location' => $filetowrite));
87
-        } else {
87
+        }else {
88 88
             // Notify editor that the upload failed
89 89
             header("HTTP/1.1 500 Server Error");
90 90
         }
Please login to merge, or discard this patch.
Core/Traits/StringFunctions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
             $trimed .= $string[$wordCounter];
93 93
             if ($wordCounter < $count - 1) {
94 94
                 $trimed .= " ";
95
-            } else {
95
+            }else {
96 96
                 $trimed .= "[...]";
97 97
             }
98 98
         }
Please login to merge, or discard this patch.
App/Models/SlugModel.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -21,11 +21,11 @@  discard block
 block discarded – undo
21 21
     {
22 22
 
23 23
         if (!$this->isAlphaNum($table)) {
24
-            throw new \ErrorException("Invalid table name " . $table);
24
+            throw new \ErrorException("Invalid table name ".$table);
25 25
         }
26 26
 
27 27
         if (!$this->isAlphaNum($columnName)) {
28
-            throw new \ErrorException("Invalid Column name " . $columnName);
28
+            throw new \ErrorException("Invalid Column name ".$columnName);
29 29
         }
30 30
 
31 31
         $slugTbl = $this->getTablePrefix($table);
@@ -49,15 +49,15 @@  discard block
 block discarded – undo
49 49
     public function getIdFromSlug(string $slug, string $table, string $columnName, string $idColumn): int
50 50
     {
51 51
         if (!$this->isAlphaNum($table)) {
52
-            throw new \ErrorException("Invalid table name " . $table);
52
+            throw new \ErrorException("Invalid table name ".$table);
53 53
         }
54 54
 
55 55
         if (!$this->isAlphaNum($columnName)) {
56
-            throw new \ErrorException("Invalid Slug Column name " . $columnName);
56
+            throw new \ErrorException("Invalid Slug Column name ".$columnName);
57 57
         }
58 58
 
59 59
         if (!$this->isAlphaNum($idColumn)) {
60
-            throw new \ErrorException("Invalid ID Column name " . $columnName);
60
+            throw new \ErrorException("Invalid ID Column name ".$columnName);
61 61
         }
62 62
 
63 63
         $slugTbl = $this->getTablePrefix($table);
@@ -85,15 +85,15 @@  discard block
 block discarded – undo
85 85
     public function getSlugFromId(int $searchId, string $table, string $columnName, string $slugColumn): string
86 86
     {
87 87
         if (!$this->isAlphaNum($table)) {
88
-            throw new \ErrorException("Invalid table name " . $table);
88
+            throw new \ErrorException("Invalid table name ".$table);
89 89
         }
90 90
 
91 91
         if (!$this->isAlphaNum($columnName)) {
92
-            throw new \ErrorException("Invalid Slug Column name " . $columnName);
92
+            throw new \ErrorException("Invalid Slug Column name ".$columnName);
93 93
         }
94 94
 
95 95
         if (!$this->isAlphaNum($slugColumn)) {
96
-            throw new \ErrorException("Invalid ID Column name " . $columnName);
96
+            throw new \ErrorException("Invalid ID Column name ".$columnName);
97 97
         }
98 98
 
99 99
         $slugTbl = $this->getTablePrefix($table);
Please login to merge, or discard this patch.