Skip to content
This repository has been archived by the owner on Mar 27, 2019. It is now read-only.

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 bc22096 commit be12c29
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 8 deletions.
7 changes: 5 additions & 2 deletions .php_cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,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 @@ -21,13 +22,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 @@ -39,10 +41,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
6 changes: 4 additions & 2 deletions src/Client/Ftp.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
<?php namespace Orchestra\FtpUpdater\Client;
<?php

namespace Orchestra\FtpUpdater\Client;

use Illuminate\Support\Arr;
use Orchestra\Contracts\Publisher\ServerException;

class Ftp
class Ftp
{
/**
* FTP stream connection.
Expand Down
4 changes: 3 additions & 1 deletion src/Client/Morph.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php namespace Orchestra\FtpUpdater\Client;
<?php

namespace Orchestra\FtpUpdater\Client;

use Orchestra\Support\Morph as Base;

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

namespace Orchestra\FtpUpdater\Client;

class RuntimeException extends \RuntimeException
{
Expand Down
4 changes: 3 additions & 1 deletion src/Uploader.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php namespace Orchestra\FtpUpdater;
<?php

namespace Orchestra\FtpUpdater;

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

namespace Orchestra\FtpUpdater;

use Orchestra\FtpUpdater\Client\Ftp;
use Illuminate\Support\ServiceProvider;
Expand Down

0 comments on commit be12c29

Please sign in to comment.