Completed
Push — master ( e02af6...f80686 )
by Nazar
05:32
created
core/engines/Cache/_Abstract_with_namespace.php 1 patch
Indentation   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -1,30 +1,30 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @package   CleverStyle CMS
4
- * @author    Nazar Mokrynskyi <[email protected]>
5
- * @copyright Copyright (c) 2016, Nazar Mokrynskyi
6
- * @license   MIT License, see license.txt
7
- */
3
+	 * @package   CleverStyle CMS
4
+	 * @author    Nazar Mokrynskyi <[email protected]>
5
+	 * @copyright Copyright (c) 2016, Nazar Mokrynskyi
6
+	 * @license   MIT License, see license.txt
7
+	 */
8 8
 namespace cs\Cache;
9 9
 /**
10
- * Abstract class that simplifies creating cache engines without namespaces support
11
- *
12
- * This class implements methods:
13
- * * `::get()`
14
- * * `::set()`
15
- * * `::del()`
16
- * * `::clean()`
17
- *
18
- * And requires to implement simple low-level `protected` proxy-methods:
19
- * * `::available_internal()`
20
- * * `::get_internal()`
21
- * * `::set_internal()`
22
- * * `::del_internal()`
23
- * * `::clean_internal()`
24
- * * `::increment_internal()`
25
- *
26
- * The main benefit is that namespace support is provided by this class and target class only needs to implement trivial low-level methods
27
- */
10
+	 * Abstract class that simplifies creating cache engines without namespaces support
11
+	 *
12
+	 * This class implements methods:
13
+	 * * `::get()`
14
+	 * * `::set()`
15
+	 * * `::del()`
16
+	 * * `::clean()`
17
+	 *
18
+	 * And requires to implement simple low-level `protected` proxy-methods:
19
+	 * * `::available_internal()`
20
+	 * * `::get_internal()`
21
+	 * * `::set_internal()`
22
+	 * * `::del_internal()`
23
+	 * * `::clean_internal()`
24
+	 * * `::increment_internal()`
25
+	 *
26
+	 * The main benefit is that namespace support is provided by this class and target class only needs to implement trivial low-level methods
27
+	 */
28 28
 abstract class _Abstract_with_namespace extends _Abstract {
29 29
 	/**
30 30
 	 * @var array
Please login to merge, or discard this patch.
core/engines/Cache/Memcached.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @package   CleverStyle CMS
4
- * @author    Nazar Mokrynskyi <[email protected]>
5
- * @copyright Copyright (c) 2011-2016, Nazar Mokrynskyi
6
- * @license   MIT License, see license.txt
7
- */
3
+	 * @package   CleverStyle CMS
4
+	 * @author    Nazar Mokrynskyi <[email protected]>
5
+	 * @copyright Copyright (c) 2011-2016, Nazar Mokrynskyi
6
+	 * @license   MIT License, see license.txt
7
+	 */
8 8
 namespace cs\User;
9 9
 use
10 10
 	cs\Config,
Please login to merge, or discard this patch.