Completed
Push — master ( cd1ffb...56d8c5 )
by Nazar
03:57
created
components/modules/Shop/Common_actions.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -11,9 +11,9 @@
 block discarded – undo
11 11
 	cs\CRUD,
12 12
 	cs\Language;
13 13
 /**
14
- * @property \cs\Cache\Prefix $cache
15
- * @property string           $table
16
- */
14
+	 * @property \cs\Cache\Prefix $cache
15
+	 * @property string           $table
16
+	 */
17 17
 trait Common_actions {
18 18
 	use
19 19
 		CRUD;
Please login to merge, or discard this patch.
components/modules/Blogs/Tags.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -13,12 +13,12 @@
 block discarded – undo
13 13
 	cs\plugins\Tags\Tags as Tags_trait,
14 14
 	cs\Singleton;
15 15
 /**
16
- * Tags trait
17
- *
18
- * Provides methods for working with tags for faster development
19
- *
20
- * @method static $this instance($check = false)
21
- */
16
+	 * Tags trait
17
+	 *
18
+	 * Provides methods for working with tags for faster development
19
+	 *
20
+	 * @method static $this instance($check = false)
21
+	 */
22 22
 class Tags {
23 23
 	use
24 24
 		Tags_trait,
Please login to merge, or discard this patch.
components/modules/Uploader/events/installed.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -13,13 +13,13 @@
 block discarded – undo
13 13
 	cs\Event,
14 14
 	cs\Storage;
15 15
 /**
16
- * Supports next events:
17
- *  System/upload_files/del_tag
18
- *  [
19
- *   'url' => url, //Optional
20
- *   'tag' => tag  //Optional ("%" symbol may be used at the end of string to delete all files, that starts from specified string)
21
- *  ]
22
- */
16
+	 * Supports next events:
17
+	 *  System/upload_files/del_tag
18
+	 *  [
19
+	 *   'url' => url, //Optional
20
+	 *   'tag' => tag  //Optional ("%" symbol may be used at the end of string to delete all files, that starts from specified string)
21
+	 *  ]
22
+	 */
23 23
 Event::instance()
24 24
 	->on(
25 25
 		'admin/System/components/modules/uninstall/before',
Please login to merge, or discard this patch.
components/modules/OAuth2/token.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,8 +18,8 @@
 block discarded – undo
18 18
 	->header('cache-control', 'no-store')
19 19
 	->header('pragma', 'no-cache');
20 20
 /**
21
- * Errors processing
22
- */
21
+	 * Errors processing
22
+	 */
23 23
 if (!isset($_POST['grant_type'])) {
24 24
 	$e = new ExitException(
25 25
 		[
Please login to merge, or discard this patch.
components/modules/WebSockets/functions.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@
 block discarded – undo
13 13
 	React\EventLoop\Factory as Loop_factory,
14 14
 	cs\Config;
15 15
 /**
16
- * @return bool
17
- */
16
+	 * @return bool
17
+	 */
18 18
 function is_server_running () {
19 19
 	$connected = false;
20 20
 	$servers   = Pool::instance()->get_all();
Please login to merge, or discard this patch.
components/modules/Static_pages/index.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,6 +9,6 @@
 block discarded – undo
9 9
 use
10 10
 	cs\Page;
11 11
 /**
12
- * Remove automatically added module name from title
13
- */
12
+	 * Remove automatically added module name from title
13
+	 */
14 14
 array_pop(Page::instance()->Title);
Please login to merge, or discard this patch.