Completed
Push — master ( c7cba4...39b3b0 )
by Anton
05:57
created
configs/session.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
- * SessionStore configuration.
4
- * - default session lifetime
5
- * - default session handler to be used, use "native" to use php sessions
6
- * - list of handlers associated with their class and custom options
7
- */
3
+     * SessionStore configuration.
4
+     * - default session lifetime
5
+     * - default session handler to be used, use "native" to use php sessions
6
+     * - list of handlers associated with their class and custom options
7
+     */
8 8
 use Spiral\Session\Handlers;
9 9
 
10 10
 return [
Please login to merge, or discard this patch.
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.
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/Exceptions/CacheException.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.