Passed
Push — master ( 87988d...16a3b8 )
by Stanislav
14:03
created
core/cache.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -19,12 +19,12 @@  discard block
 block discarded – undo
19 19
 	protected $table_images;
20 20
 
21 21
 	/**
22
-	* cache constructor.
23
-	* @param \phpbb\cache\service $cache
24
-	* @param \phpbb\db\driver\driver_interface $db
25
-	* @param $albums_table
26
-	* @param $images_table
27
-	*/
22
+	 * cache constructor.
23
+	 * @param \phpbb\cache\service $cache
24
+	 * @param \phpbb\db\driver\driver_interface $db
25
+	 * @param $albums_table
26
+	 * @param $images_table
27
+	 */
28 28
 	public function __construct(\phpbb\cache\service $cache, \phpbb\db\driver\driver_interface $db,
29 29
 								$albums_table, $images_table)
30 30
 	{
@@ -155,18 +155,18 @@  discard block
 block discarded – undo
155 155
 	}
156 156
 
157 157
 	/**
158
-	* Destroy images cache - if we had updated image information or we want other set - we will have to destroy cache
159
-	*/
158
+	 * Destroy images cache - if we had updated image information or we want other set - we will have to destroy cache
159
+	 */
160 160
 	public function destroy_images()
161 161
 	{
162 162
 		$this->phpbb_cache->destroy('_images');
163 163
 	}
164 164
 
165 165
 	/**
166
-	* Destroy album cache
167
-	* Basicly some tests fail due album cache not destroyed ...
168
-	* So lets try it now?
169
-	*/
166
+	 * Destroy album cache
167
+	 * Basicly some tests fail due album cache not destroyed ...
168
+	 * So lets try it now?
169
+	 */
170 170
 	public function destroy_albums()
171 171
 	{
172 172
 		$this->phpbb_cache->destroy('_albums');
Please login to merge, or discard this patch.