Completed
Push — master ( b962b5...e0bada )
by Nazar
04:35
created
components/plugins/SimpleImage/SimpleImage.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -10,8 +10,8 @@
 block discarded – undo
10 10
 namespace	cs\plugins\SimpleImage;
11 11
 require_once __DIR__.'/abeautifulsite/SimpleImage.php';
12 12
 /**
13
- * Class SimpleImage
14
- * This class makes image manipulation in PHP as simple as possible.
15
- * @package SimpleImage
16
- */
13
+	 * Class SimpleImage
14
+	 * This class makes image manipulation in PHP as simple as possible.
15
+	 * @package SimpleImage
16
+	 */
17 17
 class SimpleImage extends \abeautifulsite\SimpleImage {}
Please login to merge, or discard this patch.
upload_build.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,8 +23,8 @@
 block discarded – undo
23 23
 	]
24 24
 );
25 25
 /**
26
- * Check whether commit is tagged - if so - we are dealing with release
27
- */
26
+	 * Check whether commit is tagged - if so - we are dealing with release
27
+	 */
28 28
 $tag = exec('git describe --tags --exact-match HEAD 2>/dev/null');
29 29
 if (!$on_master && !$tag) {
30 30
 	echo "Distributive is uploaded only when on master branch or releases\n";
Please login to merge, or discard this patch.
components/modules/Service_worker_cache/events.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @package   Service worker cache
4
- * @category  modules
5
- * @author    Nazar Mokrynskyi <[email protected]>
6
- * @copyright Copyright (c) 2015-2016, Nazar Mokrynskyi
7
- * @license   MIT License, see license.txt
8
- */
3
+	 * @package   Service worker cache
4
+	 * @category  modules
5
+	 * @author    Nazar Mokrynskyi <[email protected]>
6
+	 * @copyright Copyright (c) 2015-2016, Nazar Mokrynskyi
7
+	 * @license   MIT License, see license.txt
8
+	 */
9 9
 namespace cs;
10 10
 Event::instance()->on(
11 11
 	'System/Page/display/before',
Please login to merge, or discard this patch.
components/modules/Uploader/events/installed.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @package   Uploader
4
- * @category  modules
5
- * @author    Nazar Mokrynskyi <[email protected]>
6
- * @copyright Copyright (c) 2015-2016, Nazar Mokrynskyi
7
- * @license   MIT License, see license.txt
8
- */
3
+	 * @package   Uploader
4
+	 * @category  modules
5
+	 * @author    Nazar Mokrynskyi <[email protected]>
6
+	 * @copyright Copyright (c) 2015-2016, Nazar Mokrynskyi
7
+	 * @license   MIT License, see license.txt
8
+	 */
9 9
 namespace cs\modules\Uploader;
10 10
 use
11 11
 	cs\Config,
@@ -13,13 +13,13 @@  discard block
 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/Uploader/events/enabled.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -1,19 +1,19 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @package   Uploader
4
- * @category  modules
5
- * @author    Nazar Mokrynskyi <[email protected]>
6
- * @copyright Copyright (c) 2015-2016, Nazar Mokrynskyi
7
- * @license   MIT License, see license.txt
8
- */
3
+	 * @package   Uploader
4
+	 * @category  modules
5
+	 * @author    Nazar Mokrynskyi <[email protected]>
6
+	 * @copyright Copyright (c) 2015-2016, Nazar Mokrynskyi
7
+	 * @license   MIT License, see license.txt
8
+	 */
9 9
 /**
10
- * Supports next events:
11
- *  System/upload_files/add_tag
12
- *  [
13
- *   'url' => url, //Required
14
- *   'tag' => tag  //Required
15
- *  ]
16
- */
10
+	 * Supports next events:
11
+	 *  System/upload_files/add_tag
12
+	 *  [
13
+	 *   'url' => url, //Required
14
+	 *   'tag' => tag  //Required
15
+	 *  ]
16
+	 */
17 17
 namespace cs\modules\Uploader;
18 18
 use
19 19
 	cs\Config,
Please login to merge, or discard this patch.
components/modules/Uploader/events.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @package   Uploader
4
- * @category  modules
5
- * @author    Nazar Mokrynskyi <[email protected]>
6
- * @copyright Copyright (c) 2015-2016, Nazar Mokrynskyi
7
- * @license   MIT License, see license.txt
8
- */
3
+	 * @package   Uploader
4
+	 * @category  modules
5
+	 * @author    Nazar Mokrynskyi <[email protected]>
6
+	 * @copyright Copyright (c) 2015-2016, Nazar Mokrynskyi
7
+	 * @license   MIT License, see license.txt
8
+	 */
9 9
 namespace cs;
10 10
 Event::instance()
11 11
 	->on(
Please login to merge, or discard this patch.
components/modules/Photo_gallery/admin/galleries.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @package		Photo gallery
4
- * @category	modules
5
- * @author		Nazar Mokrynskyi <[email protected]>
6
- * @copyright	Copyright (c) 2014-2016, Nazar Mokrynskyi
7
- * @license		MIT License, see license.txt
8
- */
3
+	 * @package		Photo gallery
4
+	 * @category	modules
5
+	 * @author		Nazar Mokrynskyi <[email protected]>
6
+	 * @copyright	Copyright (c) 2014-2016, Nazar Mokrynskyi
7
+	 * @license		MIT License, see license.txt
8
+	 */
9 9
 include __DIR__.'/galleries/save.php';
Please login to merge, or discard this patch.
components/modules/Photo_gallery/api/images.post.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @package   Photo gallery
4
- * @category  modules
5
- * @author    Nazar Mokrynskyi <[email protected]>
6
- * @copyright Copyright (c) 2013-2016, Nazar Mokrynskyi
7
- * @license   MIT License, see license.txt
8
- */
3
+	 * @package   Photo gallery
4
+	 * @category  modules
5
+	 * @author    Nazar Mokrynskyi <[email protected]>
6
+	 * @copyright Copyright (c) 2013-2016, Nazar Mokrynskyi
7
+	 * @license   MIT License, see license.txt
8
+	 */
9 9
 namespace cs\modules\Photo_gallery;
10 10
 use
11 11
 	cs\ExitException,
Please login to merge, or discard this patch.
components/modules/OAuth2/admin/clients.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @package   OAuth2
4
- * @category  modules
5
- * @author    Nazar Mokrynskyi <[email protected]>
6
- * @copyright Copyright (c) 2014-2016, Nazar Mokrynskyi
7
- * @license   MIT License, see license.txt
8
- */
3
+	 * @package   OAuth2
4
+	 * @category  modules
5
+	 * @author    Nazar Mokrynskyi <[email protected]>
6
+	 * @copyright Copyright (c) 2014-2016, Nazar Mokrynskyi
7
+	 * @license   MIT License, see license.txt
8
+	 */
9 9
 namespace cs;
10 10
 include __DIR__.'/clients/save.php';
11 11
 Index::instance()->form_attributes['is'] = 'cs-form';
Please login to merge, or discard this patch.