Skip to content

Commit

Permalink
Tweak CS.
Browse files Browse the repository at this point in the history
Signed-off-by: crynobone <crynobone@gmail.com>
  • Loading branch information
crynobone committed May 21, 2016
1 parent 28b7d44 commit 99f5910
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 9 deletions.
5 changes: 3 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 @@ -24,7 +25,6 @@ return Symfony\CS\Config\Config::create()
'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',
Expand All @@ -41,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
4 changes: 3 additions & 1 deletion src/Document.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php namespace Laravie\Parser;
<?php

namespace Laravie\Parser;

use Underscore\Types\Strings;

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

namespace Laravie\Parser;

class InvalidContentException extends \InvalidArgumentException
{
Expand Down
4 changes: 3 additions & 1 deletion src/Reader.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php namespace Laravie\Parser;
<?php

namespace Laravie\Parser;

abstract class Reader
{
Expand Down
4 changes: 3 additions & 1 deletion src/Xml/Document.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php namespace Laravie\Parser\Xml;
<?php

namespace Laravie\Parser\Xml;

use SimpleXMLElement;
use Underscore\Types\Arrays;
Expand Down
4 changes: 3 additions & 1 deletion src/Xml/Reader.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php namespace Laravie\Parser\Xml;
<?php

namespace Laravie\Parser\Xml;

use Laravie\Parser\Reader as BaseReader;
use Laravie\Parser\InvalidContentException;
Expand Down
4 changes: 3 additions & 1 deletion tests/Xml/DocumentTest.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php namespace Laravie\Parser\TestCase\Xml;
<?php

namespace Laravie\Parser\TestCase\Xml;

use Mockery as m;
use Laravie\Parser\Xml\Document;
Expand Down
4 changes: 3 additions & 1 deletion tests/Xml/ReaderTest.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php namespace Laravie\Parser\Xml\TestCase;
<?php

namespace Laravie\Parser\Xml\TestCase;

use Laravie\Parser\Xml\Reader;
use Laravie\Parser\Xml\Document;
Expand Down

0 comments on commit 99f5910

Please sign in to comment.