Passed
Push — master ( d0aeb4...d92c88 )
by Nicolas
07:53
created
public/php/common/DAO/GameSubmissionDAO.php 2 patches
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -132,11 +132,11 @@  discard block
 block discarded – undo
132 132
         return $submissions;
133 133
     }
134 134
     
135
-     /**
136
-    * Get the total count of submissions
137
-    *
138
-    * @param  integer $user_id Optional ID of a user to count comments for
139
-    * @return integer Number of comments     */
135
+        /**
136
+         * Get the total count of submissions
137
+         *
138
+         * @param  integer $user_id Optional ID of a user to count comments for
139
+         * @return integer Number of comments     */
140 140
     public function getGameSubmissionCount($user_id = null) {
141 141
         if (isset($user_id)) {
142 142
             $stmt = \AL\Db\execute_query(
@@ -170,10 +170,10 @@  discard block
 block discarded – undo
170 170
     
171 171
     
172 172
     /**
173
-    * Get the submission screenshots
174
-    *
175
-    * @param  integer $submission_id
176
-    * @return screenshots links    */
173
+     * Get the submission screenshots
174
+     *
175
+     * @param  integer $submission_id
176
+     * @return screenshots links    */
177 177
     /*public function getGameSubmissionScreenshots($submission_id = null) {
178 178
         $stmt = \AL\Db\execute_query(
179 179
             "GameSubmissionDAO: Get the screenshots of the submission",
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 namespace AL\Common\DAO;
3 3
 
4
-require_once __DIR__."/../../lib/Db.php" ;
5
-require_once __DIR__."/../Model/Game/GameSubmission.php" ;
4
+require_once __DIR__."/../../lib/Db.php";
5
+require_once __DIR__."/../Model/Game/GameSubmission.php";
6 6
 
7 7
 use AL\Common\Model\GameSubmission;
8 8
 
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
     
19 19
     private function getGameSubmissionQuery($user_id = null, $last_timestamp = null, $action = null, $done = null) {
20 20
             
21
-        $query =  "SELECT
21
+        $query = "SELECT
22 22
                 game.game_id,
23 23
                 game.game_name,
24 24
                 game_submitinfo.timestamp,
@@ -53,9 +53,9 @@  discard block
 block discarded – undo
53 53
             $query .= " AND users.user_id = $user_id";
54 54
         }
55 55
 
56
-        if (isset($action) and $action=="autoload") {
56
+        if (isset($action) and $action == "autoload") {
57 57
             $query .= " AND game_submitinfo.timestamp < $last_timestamp ";
58
-        } elseif (isset($action) and $action=="search") {
58
+        } elseif (isset($action) and $action == "search") {
59 59
             $query .= " AND game_submitinfo.timestamp <= $last_timestamp ";
60 60
         }
61 61
 
Please login to merge, or discard this patch.
public/php/common/DAO/PubDevDAO.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -137,12 +137,12 @@
 block discarded – undo
137 137
         return $distributors;
138 138
     }
139 139
     
140
-      /**
141
-     * add a distributor to a release
142
-     *
143
-     * @param integer release ID
144
-     * @param integer pub_Dev ID
145
-     */
140
+        /**
141
+         * add a distributor to a release
142
+         *
143
+         * @param integer release ID
144
+         * @param integer pub_Dev ID
145
+         */
146 146
     public function addDistributorToRelease($release_id, $pub_dev_id) {
147 147
         $stmt = \AL\Db\execute_query(
148 148
             "PubDevDAO: addDistributorToRelease",
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace AL\Common\DAO;
3 3
 
4
-require_once __DIR__."/../../lib/Db.php" ;
5
-require_once __DIR__."/../Model/PubDev/PubDev.php" ;
4
+require_once __DIR__."/../../lib/Db.php";
5
+require_once __DIR__."/../Model/PubDev/PubDev.php";
6 6
 
7 7
 /**
8 8
  * DAO for PubDev
Please login to merge, or discard this patch.
public/php/common/DAO/ArticleDAO.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace AL\Common\DAO;
3 3
 
4
-require_once __DIR__."/../../lib/Db.php" ;
5
-require_once __DIR__."/../Model/Article/Article.php" ;
4
+require_once __DIR__."/../../lib/Db.php";
5
+require_once __DIR__."/../Model/Article/Article.php";
6 6
 
7 7
 /**
8 8
  * DAO for Article
Please login to merge, or discard this patch.
public/php/common/DAO/LinkDAO.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -232,7 +232,7 @@
 block discarded – undo
232 232
                         LEFT JOIN users ON ( website.user_id = users.user_id )
233 233
                         WHERE website.website_imgext <> ' ' and website.inactive = 0
234 234
                         ORDER BY RAND() LIMIT 1".
235
-                         null, null
235
+                            null, null
236 236
             );
237 237
         }
238 238
         
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace AL\Common\DAO;
3 3
 
4
-require_once __DIR__."/../../lib/Db.php" ;
5
-require_once __DIR__."/../Model/Link/Link.php" ;
4
+require_once __DIR__."/../../lib/Db.php";
5
+require_once __DIR__."/../Model/Link/Link.php";
6 6
 
7 7
 /**
8 8
  * DAO for Links
Please login to merge, or discard this patch.
public/php/common/DAO/ContinentDAO.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace AL\Common\DAO;
3 3
 
4
-require_once __DIR__."/../../lib/Db.php" ;
5
-require_once __DIR__."/../Model/Continent/Continent.php" ;
4
+require_once __DIR__."/../../lib/Db.php";
5
+require_once __DIR__."/../Model/Continent/Continent.php";
6 6
 
7 7
 /**
8 8
  * DAO for Continent
Please login to merge, or discard this patch.
public/php/common/DAO/MediaScanTypeDAO.php 2 patches
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -45,11 +45,11 @@  discard block
 block discarded – undo
45 45
         return $media_scan_types;
46 46
     }
47 47
 
48
-     /**
49
-     * add a media scan type to the database
50
-     *
51
-     * @param varchar media_type
52
-     */
48
+        /**
49
+         * add a media scan type to the database
50
+         *
51
+         * @param varchar media_type
52
+         */
53 53
     public function addMediaScanType($media_scan_type) {
54 54
         $stmt = \AL\Db\execute_query(
55 55
             "MediaScanTypeDAO: addMediaScanType",
@@ -78,11 +78,11 @@  discard block
 block discarded – undo
78 78
     }
79 79
     
80 80
         /**
81
-     * update a media_scan_type
82
-     *
83
-     * @param int media_scan_type_id
84
-     * @param varchar media_scan_type
85
-     */
81
+         * update a media_scan_type
82
+         *
83
+         * @param int media_scan_type_id
84
+         * @param varchar media_scan_type
85
+         */
86 86
     public function updateMediaScanType($media_scan_type_id, $media_scan_type_name) {
87 87
         $stmt = \AL\Db\execute_query(
88 88
             "MediaScanTypeDAO: updateMediaScanType",
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace AL\Common\DAO;
3 3
 
4
-require_once __DIR__."/../../lib/Db.php" ;
5
-require_once __DIR__."/../Model/Dump/MediaScanType.php" ;
4
+require_once __DIR__."/../../lib/Db.php";
5
+require_once __DIR__."/../Model/Dump/MediaScanType.php";
6 6
 
7 7
 /**
8 8
  * DAO for Media Scan Type
Please login to merge, or discard this patch.
public/php/common/DAO/LocationDAO.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace AL\Common\DAO;
3 3
 
4
-require_once __DIR__."/../../lib/Db.php" ;
5
-require_once __DIR__."/../Model/Location/Location.php" ;
4
+require_once __DIR__."/../../lib/Db.php";
5
+require_once __DIR__."/../Model/Location/Location.php";
6 6
 
7 7
 /**
8 8
  * DAO for Locations
Please login to merge, or discard this patch.
public/php/common/DAO/GameReleaseDAO.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace AL\Common\DAO;
3 3
 
4
-require_once __DIR__."/../../lib/Db.php" ;
5
-require_once __DIR__."/../Model/Game/GameRelease.php" ;
6
-require_once __DIR__."/../Model/Game/Memory.php" ;
7
-require_once __DIR__."/../Model/PubDev/PubDev.php" ;
4
+require_once __DIR__."/../../lib/Db.php";
5
+require_once __DIR__."/../Model/Game/GameRelease.php";
6
+require_once __DIR__."/../Model/Game/Memory.php";
7
+require_once __DIR__."/../Model/PubDev/PubDev.php";
8 8
 
9 9
 /**
10 10
  * DAO for Game Releases
Please login to merge, or discard this patch.
public/php/common/DAO/CopyProtectionDAO.php 2 patches
Indentation   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -79,13 +79,13 @@  discard block
 block discarded – undo
79 79
         return $copy_protection_types;
80 80
     }
81 81
     
82
-     /**
83
-     * Add copy Protection for release
84
-     *
85
-     * @param integer Game Release ID
86
-     * @param integer protection ID
87
-     * $param text note
88
-     */
82
+        /**
83
+         * Add copy Protection for release
84
+         *
85
+         * @param integer Game Release ID
86
+         * @param integer protection ID
87
+         * $param text note
88
+         */
89 89
     public function addCopyProtectionForRelease($game_release_id, $protection_id, $note) {
90 90
        
91 91
         $stmt = \AL\Db\execute_query(
@@ -98,12 +98,12 @@  discard block
 block discarded – undo
98 98
         $stmt->close();
99 99
     }
100 100
     
101
-     /**
102
-     * Delete copy Protection for release
103
-     *
104
-     * @param integer Game Release ID
105
-     * @param integer protection ID
106
-     */
101
+        /**
102
+         * Delete copy Protection for release
103
+         *
104
+         * @param integer Game Release ID
105
+         * @param integer protection ID
106
+         */
107 107
     public function deleteCopyProtectionForRelease($game_release_id, $protection_id) {
108 108
         $stmt = \AL\Db\execute_query(
109 109
             "copyProtectionDAO: deleteCopyProtectionForRelease",
@@ -116,11 +116,11 @@  discard block
 block discarded – undo
116 116
         $stmt->close();
117 117
     }
118 118
      
119
-     /**
120
-     * add a copy protection to the database
121
-     *
122
-     * @param varchar copy_protection
123
-     */
119
+        /**
120
+         * add a copy protection to the database
121
+         *
122
+         * @param varchar copy_protection
123
+         */
124 124
     public function addCopyProtection($copy_protection) {
125 125
         $stmt = \AL\Db\execute_query(
126 126
             "CopyProtectionDAO: addCopyProtection",
@@ -149,11 +149,11 @@  discard block
 block discarded – undo
149 149
     }
150 150
     
151 151
         /**
152
-     * update a copy_protection
153
-     *
154
-     * @param int copy_protection_id
155
-     * @param varchar copy_protection
156
-     */
152
+         * update a copy_protection
153
+         *
154
+         * @param int copy_protection_id
155
+         * @param varchar copy_protection
156
+         */
157 157
     public function updateCopyProtection($copy_protection_id, $copy_protection_name) {
158 158
         $stmt = \AL\Db\execute_query(
159 159
             "CopyProtectionDAO: updateCopyProtection",
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace AL\Common\DAO;
3 3
 
4
-require_once __DIR__."/../../lib/Db.php" ;
5
-require_once __DIR__."/../Model/Game/CopyProtection.php" ;
4
+require_once __DIR__."/../../lib/Db.php";
5
+require_once __DIR__."/../Model/Game/CopyProtection.php";
6 6
 
7 7
 /**
8 8
  * DAO for Copy Protection
Please login to merge, or discard this patch.