Passed
Push — master ( 0b1807...d31d00 )
by Nicolas
08:05
created
public/php/common/tiles/latest_news_tile.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -51,10 +51,10 @@
 block discarded – undo
51 51
     $smarty->append(
52 52
         'news',
53 53
         array('news_date' => $news_date,
54
-          'news_headline' => $sql_news['news_headline'],
55
-          'user_id' => $sql_news['user_id'],
56
-          'user_name' => $sql_news['userid'],
57
-          'news_text' => $news_text,
58
-          'image' => $v_image)
54
+            'news_headline' => $sql_news['news_headline'],
55
+            'user_id' => $sql_news['user_id'],
56
+            'user_name' => $sql_news['userid'],
57
+            'news_text' => $news_text,
58
+            'image' => $v_image)
59 59
     );
60 60
 }
Please login to merge, or discard this patch.
public/php/common/tiles/who_is_it_tile.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -56,11 +56,11 @@
 block discarded – undo
56 56
 $smarty->assign(
57 57
     'who_is_it',
58 58
     array('ind_id' => $sql_interview['ind_id'],
59
-               'ind_name' => $sql_interview['ind_name'],
60
-               'ind_img' => $v_ind_image,
61
-               'int_id' => $sql_interview['interview_id'],
62
-               'int_text' => $int_text,
63
-               'int_date' => $interview_date,
64
-               'int_user_id' => $sql_interview['user_id'],
65
-               'int_userid' => $sql_interview['userid'])
59
+                'ind_name' => $sql_interview['ind_name'],
60
+                'ind_img' => $v_ind_image,
61
+                'int_id' => $sql_interview['interview_id'],
62
+                'int_text' => $int_text,
63
+                'int_date' => $interview_date,
64
+                'int_user_id' => $sql_interview['user_id'],
65
+                'int_userid' => $sql_interview['userid'])
66 66
 );
Please login to merge, or discard this patch.
public/php/common/DAO/CrewDAO.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -151,12 +151,12 @@
 block discarded – undo
151 151
         return $crews;
152 152
     }
153 153
     
154
-     /**
155
-     * add a crew to a release
156
-     *
157
-     * @param integer release ID
158
-     * @param integer crew ID
159
-     */
154
+        /**
155
+         * add a crew to a release
156
+         *
157
+         * @param integer release ID
158
+         * @param integer crew ID
159
+         */
160 160
     public function addCrewToRelease($release_id, $crew_id) {
161 161
         $stmt = \AL\Db\execute_query(
162 162
             "CrewDAO: addCrewToRelease",
Please login to merge, or discard this patch.
public/php/common/DAO/LanguageDAO.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -130,11 +130,11 @@
 block discarded – undo
130 130
     }
131 131
 
132 132
         /**
133
-     * update a language
134
-     *
135
-     * @param int language_id
136
-     * @param varchar language_name
137
-     */
133
+         * update a language
134
+         *
135
+         * @param int language_id
136
+         * @param varchar language_name
137
+         */
138 138
     public function updateLanguage($language_id, $language_name) {
139 139
         $stmt = \AL\Db\execute_query(
140 140
             "LanguageDAO: updateLanguage",
Please login to merge, or discard this patch.
public/php/common/DAO/IndividualRoleDAO.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -111,11 +111,11 @@
 block discarded – undo
111 111
     }
112 112
     
113 113
         /**
114
-     * update a role
115
-     *
116
-     * @param int role_id
117
-     * @param varchar role_name
118
-     */
114
+         * update a role
115
+         *
116
+         * @param int role_id
117
+         * @param varchar role_name
118
+         */
119 119
     public function updateIndividualRole($role_id, $role_name) {
120 120
         $stmt = \AL\Db\execute_query(
121 121
             "IndividualRoleDAO: updateIndividualRole",
Please login to merge, or discard this patch.
public/php/common/DAO/DumpDAO.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -34,14 +34,14 @@  discard block
 block discarded – undo
34 34
         );
35 35
     }
36 36
 
37
-     /**
38
-     * Add a dump to a media
39
-     *
40
-     * @param int media_id
41
-     * @param varchar format
42
-     * @param varchar file name
43
-     * @param text info
44
-     */
37
+        /**
38
+         * Add a dump to a media
39
+         *
40
+         * @param int media_id
41
+         * @param varchar format
42
+         * @param varchar file name
43
+         * @param text info
44
+         */
45 45
     public function addDumpToMedia(
46 46
         $media_id,
47 47
         $format,
@@ -189,11 +189,11 @@  discard block
 block discarded – undo
189 189
         return $dump;
190 190
     }
191 191
 
192
-      /**
193
-     * delete a dump from a media
194
-     *
195
-     * @param int dump_id
196
-     */
192
+        /**
193
+         * delete a dump from a media
194
+         *
195
+         * @param int dump_id
196
+         */
197 197
     public function deleteDumpFromMedia($dump_id, $game_file_path) {
198 198
         $stmt = \AL\Db\execute_query(
199 199
             "DumpDAO: deleteDumpFromMedia",
Please login to merge, or discard this patch.
public/php/common/DAO/GameGenreDAO.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -104,11 +104,11 @@  discard block
 block discarded – undo
104 104
         $stmt->close();
105 105
     }
106 106
      
107
-     /**
108
-     * add a genre to the database
109
-     *
110
-     * @param varchar Genre
111
-     */
107
+        /**
108
+         * add a genre to the database
109
+         *
110
+         * @param varchar Genre
111
+         */
112 112
     public function addGenre($genre) {
113 113
         $stmt = \AL\Db\execute_query(
114 114
             "GameGenreDAO: addGenre",
@@ -137,11 +137,11 @@  discard block
 block discarded – undo
137 137
     }
138 138
     
139 139
         /**
140
-     * update a genre
141
-     *
142
-     * @param int genre_id
143
-     * @param varchar genre_name
144
-     */
140
+         * update a genre
141
+         *
142
+         * @param int genre_id
143
+         * @param varchar genre_name
144
+         */
145 145
     public function updateGenre($genre_id, $genre_name) {
146 146
         $stmt = \AL\Db\execute_query(
147 147
             "GameGenreDAO: updateGenre",
Please login to merge, or discard this patch.
public/php/common/DAO/GameReleaseAkaDAO.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -87,13 +87,13 @@
 block discarded – undo
87 87
         $stmt->close();
88 88
     }
89 89
 
90
-     /**
91
-     * Delete an AKA for a release
92
-     *
93
-     * @param integer Game_release_aka_id
94
-     * @param integer Game_release_id
95
-     *
96
-     */
90
+        /**
91
+         * Delete an AKA for a release
92
+         *
93
+         * @param integer Game_release_aka_id
94
+         * @param integer Game_release_id
95
+         *
96
+         */
97 97
     public function deleteAkaForRelease($game_release_aka_id, $game_release_id) {
98 98
         $stmt = \AL\Db\execute_query(
99 99
             "GameReleaseAkaDAO: DeleteAkaForRelease",
Please login to merge, or discard this patch.
public/php/common/DAO/TosDAO.php 1 patch
Indentation   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -45,12 +45,12 @@  discard block
 block discarded – undo
45 45
         return $tos_versions;
46 46
     }
47 47
 
48
-     /**
49
-     * Get all tos IDs incompatible with a release
50
-     *
51
-     * @param integer Release ID
52
-     * @return integer[] List of incompatible TOS IDs
53
-     */
48
+        /**
49
+         * Get all tos IDs incompatible with a release
50
+         *
51
+         * @param integer Release ID
52
+         * @return integer[] List of incompatible TOS IDs
53
+         */
54 54
     public function getIncompatibleTosForRelease($release_id) {
55 55
         $stmt = \AL\Db\execute_query(
56 56
             "TosDAO: getIncompatibleTosForRelease",
@@ -144,11 +144,11 @@  discard block
 block discarded – undo
144 144
     }
145 145
 
146 146
 
147
-     /**
148
-     * add a tos to the database
149
-     *
150
-     * @param varchar tos
151
-     */
147
+        /**
148
+         * add a tos to the database
149
+         *
150
+         * @param varchar tos
151
+         */
152 152
     public function addTos($tos) {
153 153
         $stmt = \AL\Db\execute_query(
154 154
             "TosDAO: addTos",
@@ -176,12 +176,12 @@  discard block
 block discarded – undo
176 176
         $stmt->close();
177 177
     }
178 178
 
179
-     /**
180
-     * update a tos version
181
-     *
182
-     * @param int tos_id
183
-     * @param varchar tos_name
184
-     */
179
+        /**
180
+         * update a tos version
181
+         *
182
+         * @param int tos_id
183
+         * @param varchar tos_name
184
+         */
185 185
     public function updateTos($tos_id, $tos_name) {
186 186
         $stmt = \AL\Db\execute_query(
187 187
             "TosDAO: updateTos",
Please login to merge, or discard this patch.