Completed
Push — master ( 39b3b0...c4e3cd )
by Anton
10:47 queued 05:11
created
configs/storage.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Configuration of StorageManager components with it's servers and containers.
4
- * - list of servers with their adapter class and options to associated with buckets
5
- * - list of buckets with their server id, prefix value and adapter specific options
6
- */
3
+     * Configuration of StorageManager components with it's servers and containers.
4
+     * - list of servers with their adapter class and options to associated with buckets
5
+     * - list of buckets with their server id, prefix value and adapter specific options
6
+     */
7 7
 use Spiral\Storage\Servers;
8 8
 
9 9
 return [
Please login to merge, or discard this patch.
configs/tokenizer.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Spiral tokenizer component configuration, includes only black and white listed directories to
4
- * be indexed.
5
- */
3
+     * Spiral tokenizer component configuration, includes only black and white listed directories to
4
+     * be indexed.
5
+     */
6 6
 return [
7 7
     'directories' => [
8 8
         'classes'
Please login to merge, or discard this patch.
configs/translator.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
- * Translator component options.
4
- * - default language to be used
5
- * - bundle name to store plural phrases
6
- * - language options, including bundle storage directory (memory location) and pluralizer class
7
- */
3
+     * Translator component options.
4
+     * - default language to be used
5
+     * - bundle name to store plural phrases
6
+     * - language options, including bundle storage directory (memory location) and pluralizer class
7
+     */
8 8
 use Spiral\Translator\Pluralizers;
9 9
 
10 10
 return [
Please login to merge, or discard this patch.
configs/validation.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
- * Validation configuration includes:
4
- * - set of empty conditions, you must include at least one condition like that into field
5
- * validation to ensure that field value will be set
6
- * - validation checker classes
7
- * - validation rule aliases for convenience
8
- */
3
+     * Validation configuration includes:
4
+     * - set of empty conditions, you must include at least one condition like that into field
5
+     * validation to ensure that field value will be set
6
+     * - validation checker classes
7
+     * - validation rule aliases for convenience
8
+     */
9 9
 use Spiral\Validation\Checkers;
10 10
 
11 11
 return [
Please login to merge, or discard this patch.
source/Spiral/Cache/CacheProvider.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
- * Spiral Framework.
4
- *
5
- * @license   MIT
6
- * @author    Anton Titov (Wolfy-J)
7
- */
3
+     * Spiral Framework.
4
+     *
5
+     * @license   MIT
6
+     * @author    Anton Titov (Wolfy-J)
7
+     */
8 8
 namespace Spiral;
9 9
 
10 10
 /**
Please login to merge, or discard this patch.
source/Spiral/Cache/CacheStore.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
- * Spiral Framework.
4
- *
5
- * @license   MIT
6
- * @author    Anton Titov (Wolfy-J)
7
- */
3
+     * Spiral Framework.
4
+     *
5
+     * @license   MIT
6
+     * @author    Anton Titov (Wolfy-J)
7
+     */
8 8
 namespace Spiral;
9 9
 
10 10
 /**
Please login to merge, or discard this patch.
source/Spiral/Cache/Stores/APCStore.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
- * Spiral Framework.
4
- *
5
- * @license   MIT
6
- * @author    Anton Titov (Wolfy-J)
7
- */
3
+     * Spiral Framework.
4
+     *
5
+     * @license   MIT
6
+     * @author    Anton Titov (Wolfy-J)
7
+     */
8 8
 namespace Spiral;
9 9
 
10 10
 /**
Please login to merge, or discard this patch.
source/Spiral/Cache/Stores/FileStore.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
- * Spiral Framework.
4
- *
5
- * @license   MIT
6
- * @author    Anton Titov (Wolfy-J)
7
- */
3
+     * Spiral Framework.
4
+     *
5
+     * @license   MIT
6
+     * @author    Anton Titov (Wolfy-J)
7
+     */
8 8
 namespace Spiral;
9 9
 
10 10
 /**
Please login to merge, or discard this patch.
source/Spiral/Cache/Stores/Memcache/DriverInterface.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
- * Spiral Framework.
4
- *
5
- * @license   MIT
6
- * @author    Anton Titov (Wolfy-J)
7
- */
3
+     * Spiral Framework.
4
+     *
5
+     * @license   MIT
6
+     * @author    Anton Titov (Wolfy-J)
7
+     */
8 8
 namespace Spiral;
9 9
 
10 10
 /**
Please login to merge, or discard this patch.