Skip to content

Commit

Permalink
Update standard.
Browse files Browse the repository at this point in the history
Signed-off-by: crynobone <crynobone@gmail.com>
  • Loading branch information
crynobone committed Mar 20, 2016
1 parent ebb166d commit b5c83a5
Show file tree
Hide file tree
Showing 15 changed files with 47 additions and 16 deletions.
7 changes: 5 additions & 2 deletions .php_cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ return Symfony\CS\Config\Config::create()
'-psr0',
'align_double_arrow',
'align_equals',
'blankline_after_open_tag',
'concat_without_spaces',
'double_arrow_multiline_whitespaces',
'duplicate_semicolon',
Expand All @@ -23,13 +24,14 @@ return Symfony\CS\Config\Config::create()
'include',
'join_function',
'multiline_array_trailing_comma',
'multiline_spaces_before_semicolon',
'new_with_braces',
'no_blank_lines_after_class_opening',
'no_blank_lines_before_namespace',
'no_empty_lines_after_phpdocs',
'object_operator',
'operators_spaces',
'phpdoc_indent',
'phpdoc_inline_tag',
'phpdoc_no_access',
'-phpdoc_no_empty_return',
'phpdoc_no_package',
Expand All @@ -41,10 +43,11 @@ return Symfony\CS\Config\Config::create()
'phpdoc_trim',
'phpdoc_type_to_var',
'phpdoc_var_without_name',
'single_array_no_trailing_comma',
'remove_leading_slash_use',
'remove_lines_between_uses',
'short_array_syntax',
'single_array_no_trailing_comma',
'single_blank_line_before_namespace',
'single_quote',
'spaces_cast',
'standardize_not_equal',
Expand Down
4 changes: 3 additions & 1 deletion src/CommandServiceProvider.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php namespace Orchestra\Memory;
<?php

namespace Orchestra\Memory;

use Orchestra\Memory\Console\MemoryCommand;
use Orchestra\Support\Providers\CommandServiceProvider as ServiceProvider;
Expand Down
4 changes: 3 additions & 1 deletion src/Console/MemoryCommand.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php namespace Orchestra\Memory\Console;
<?php

namespace Orchestra\Memory\Console;

use Illuminate\Console\Command;

Expand Down
4 changes: 3 additions & 1 deletion src/ContainerTrait.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php namespace Orchestra\Memory;
<?php

namespace Orchestra\Memory;

/**
* @deprecated v3.2.x
Expand Down
4 changes: 3 additions & 1 deletion src/DatabaseHandler.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php namespace Orchestra\Memory;
<?php

namespace Orchestra\Memory;

use PDOException;
use Illuminate\Support\Arr;
Expand Down
4 changes: 3 additions & 1 deletion src/Handler.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php namespace Orchestra\Memory;
<?php

namespace Orchestra\Memory;

use Illuminate\Support\Arr;

Expand Down
4 changes: 3 additions & 1 deletion src/Handlers/Cache.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php namespace Orchestra\Memory\Handlers;
<?php

namespace Orchestra\Memory\Handlers;

use Illuminate\Support\Arr;
use Orchestra\Memory\Handler;
Expand Down
4 changes: 3 additions & 1 deletion src/Handlers/Eloquent.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php namespace Orchestra\Memory\Handlers;
<?php

namespace Orchestra\Memory\Handlers;

use Illuminate\Support\Arr;
use Orchestra\Memory\DatabaseHandler;
Expand Down
4 changes: 3 additions & 1 deletion src/Handlers/Fluent.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php namespace Orchestra\Memory\Handlers;
<?php

namespace Orchestra\Memory\Handlers;

use Illuminate\Support\Arr;
use Orchestra\Memory\DatabaseHandler;
Expand Down
4 changes: 3 additions & 1 deletion src/Handlers/Runtime.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php namespace Orchestra\Memory\Handlers;
<?php

namespace Orchestra\Memory\Handlers;

use Orchestra\Memory\Handler;
use Orchestra\Contracts\Memory\Handler as HandlerContract;
Expand Down
4 changes: 3 additions & 1 deletion src/Memorizable.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php namespace Orchestra\Memory;
<?php

namespace Orchestra\Memory;

use Orchestra\Contracts\Memory\Provider as ProviderContract;

Expand Down
4 changes: 3 additions & 1 deletion src/MemoryManager.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php namespace Orchestra\Memory;
<?php

namespace Orchestra\Memory;

use Exception;
use RuntimeException;
Expand Down
4 changes: 3 additions & 1 deletion src/MemoryServiceProvider.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php namespace Orchestra\Memory;
<?php

namespace Orchestra\Memory;

use Illuminate\Contracts\Foundation\Application;
use Orchestra\Support\Providers\ServiceProvider;
Expand Down
4 changes: 3 additions & 1 deletion src/Model.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php namespace Orchestra\Memory;
<?php

namespace Orchestra\Memory;

use Illuminate\Database\Eloquent\Model as Eloquent;

Expand Down
4 changes: 3 additions & 1 deletion src/Provider.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php namespace Orchestra\Memory;
<?php

namespace Orchestra\Memory;

use Orchestra\Support\Traits\DataContainer;
use Illuminate\Contracts\Encryption\Encrypter;
Expand Down

0 comments on commit b5c83a5

Please sign in to comment.