@@ -1,11 +1,11 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Spiral Framework. |
|
4 | - * |
|
5 | - * @license MIT |
|
6 | - * @author Anton Titov (Wolfy-J) |
|
7 | - * @copyright �2009-2015 |
|
8 | - */ |
|
3 | + * Spiral Framework. |
|
4 | + * |
|
5 | + * @license MIT |
|
6 | + * @author Anton Titov (Wolfy-J) |
|
7 | + * @copyright �2009-2015 |
|
8 | + */ |
|
9 | 9 | namespace Spiral\ORM; |
10 | 10 | |
11 | 11 | use Spiral\Core\ConstructorInterface; |
@@ -1,11 +1,11 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Spiral Framework, SpiralScout LLC. |
|
4 | - * |
|
5 | - * @package spiralFramework |
|
6 | - * @author Anton Titov (Wolfy-J) |
|
7 | - * @copyright ©2009-2011 |
|
8 | - */ |
|
3 | + * Spiral Framework, SpiralScout LLC. |
|
4 | + * |
|
5 | + * @package spiralFramework |
|
6 | + * @author Anton Titov (Wolfy-J) |
|
7 | + * @copyright ©2009-2011 |
|
8 | + */ |
|
9 | 9 | namespace Spiral\Storage; |
10 | 10 | |
11 | 11 | use Psr\Http\Message\StreamInterface; |
@@ -1,10 +1,10 @@ |
||
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 | /** |
@@ -1,11 +1,11 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Configuration of spiral DatabaseProvider. |
|
4 | - * - default database alias/name |
|
5 | - * - list of database name aliases used for injections and other operations |
|
6 | - * - list of databases associated with their source connection |
|
7 | - * - list of connections associated with their driver and connection options |
|
8 | - */ |
|
3 | + * Configuration of spiral DatabaseProvider. |
|
4 | + * - default database alias/name |
|
5 | + * - list of database name aliases used for injections and other operations |
|
6 | + * - list of databases associated with their source connection |
|
7 | + * - list of connections associated with their driver and connection options |
|
8 | + */ |
|
9 | 9 | use Spiral\Database\Drivers; |
10 | 10 | |
11 | 11 | return [ |
@@ -1,12 +1,12 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Configuration of debug component and related classes: |
|
4 | - * - global log populated by every instance of spiral Logger and used in exception snapshots or |
|
5 | - * profiler |
|
6 | - * - list of logger channels associated with their message handlers |
|
7 | - * - configuration for default debug snapshot implementation, including reporting directory and view |
|
8 | - * to be used for exceptions |
|
9 | - */ |
|
3 | + * Configuration of debug component and related classes: |
|
4 | + * - global log populated by every instance of spiral Logger and used in exception snapshots or |
|
5 | + * profiler |
|
6 | + * - list of logger channels associated with their message handlers |
|
7 | + * - configuration for default debug snapshot implementation, including reporting directory and view |
|
8 | + * to be used for exceptions |
|
9 | + */ |
|
10 | 10 | use Spiral\Debug\Debugger; |
11 | 11 | use Spiral\Debug\Logger; |
12 | 12 | use Spiral\Debug\Logger\Handlers\FileHandler; |
@@ -1,8 +1,8 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Encrypter configuration includes only environment specific encryption key. Spiral encrypter |
|
4 | - * can in addition read encryption method if such option were specified. |
|
5 | - */ |
|
3 | + * Encrypter configuration includes only environment specific encryption key. Spiral encrypter |
|
4 | + * can in addition read encryption method if such option were specified. |
|
5 | + */ |
|
6 | 6 | return [ |
7 | 7 | 'key' => '' |
8 | 8 | ]; |
9 | 9 | \ No newline at end of file |
@@ -1,18 +1,18 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Http dispatcher configuration. Includes: |
|
4 | - * - base application path |
|
5 | - * - isolation mode, when isolation is enable http component will handle all inner exceptions using |
|
6 | - * snapshots, in opposite case exceptions will be passed on higher level and can be handled |
|
7 | - * using default exception handler, when isolation is turned off some middlewares may not |
|
8 | - * finish their work |
|
9 | - * - exposeErrors flag, if true snapshots will be rendered to client |
|
10 | - * - CookieManager middleware settings, default domain and protection method |
|
11 | - * - headers for initial http response |
|
12 | - * - set of default middlewares to to applied to every request and response |
|
13 | - * - default router class and settings |
|
14 | - * - association between http errors and view name to be used to render them to client |
|
15 | - */ |
|
3 | + * Http dispatcher configuration. Includes: |
|
4 | + * - base application path |
|
5 | + * - isolation mode, when isolation is enable http component will handle all inner exceptions using |
|
6 | + * snapshots, in opposite case exceptions will be passed on higher level and can be handled |
|
7 | + * using default exception handler, when isolation is turned off some middlewares may not |
|
8 | + * finish their work |
|
9 | + * - exposeErrors flag, if true snapshots will be rendered to client |
|
10 | + * - CookieManager middleware settings, default domain and protection method |
|
11 | + * - headers for initial http response |
|
12 | + * - set of default middlewares to to applied to every request and response |
|
13 | + * - default router class and settings |
|
14 | + * - association between http errors and view name to be used to render them to client |
|
15 | + */ |
|
16 | 16 | use Spiral\Http; |
17 | 17 | use Spiral\Http\Middlewares; |
18 | 18 |
@@ -1,11 +1,11 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Configuration of Migrator component (located in Database component), includes: |
|
4 | - * - directory to store migrations in |
|
5 | - * - database to store information about executed migrations |
|
6 | - * - table to store information about executed migrations |
|
7 | - * - list of environments where migration commands allowed to run without user confirmation |
|
8 | - */ |
|
3 | + * Configuration of Migrator component (located in Database component), includes: |
|
4 | + * - directory to store migrations in |
|
5 | + * - database to store information about executed migrations |
|
6 | + * - table to store information about executed migrations |
|
7 | + * - list of environments where migration commands allowed to run without user confirmation |
|
8 | + */ |
|
9 | 9 | return [ |
10 | 10 | 'directory' => 'database/migrations', |
11 | 11 | 'database' => 'default', |
@@ -1,13 +1,13 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * ODM component configuration and mapping. |
|
4 | - * - default database alias/name |
|
5 | - * - list of database name aliases used for injections and other operations |
|
6 | - * - list of mongo databases associated with their server, name, profiling mode and options |
|
7 | - * - ODM SchemaBuilder configuration |
|
8 | - * - set of default mutators associated with field type |
|
9 | - * - mutator aliases to be used in model definitions |
|
10 | - */ |
|
3 | + * ODM component configuration and mapping. |
|
4 | + * - default database alias/name |
|
5 | + * - list of database name aliases used for injections and other operations |
|
6 | + * - list of mongo databases associated with their server, name, profiling mode and options |
|
7 | + * - ODM SchemaBuilder configuration |
|
8 | + * - set of default mutators associated with field type |
|
9 | + * - mutator aliases to be used in model definitions |
|
10 | + */ |
|
11 | 11 | use Spiral\ODM\Accessors\ScalarArray; |
12 | 12 | use Spiral\ODM\Entities\MongoDatabase; |
13 | 13 | use Spiral\ODM\ODM; |