Skip to content

Commit

Permalink
Remove additional spaces to set correct config
Browse files Browse the repository at this point in the history
  • Loading branch information
peter279k authored and cristianoc72 committed Sep 3, 2019
1 parent 69c150b commit 081886d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public function __construct() {
parent::__construct('phootwork');
$this->setRiskyAllowed(true);
}

public function getRules(): array {
// 'linefeed'
return [
Expand Down Expand Up @@ -39,7 +39,7 @@ public function getRules(): array {
'concat_space' => [
'spacing' => 'one'
],
'declare_strict_types ' => true,
'declare_strict_types' => true,
'encoding' => true,
'elseif' => true,
'full_opening_tag' => true,
Expand All @@ -50,7 +50,7 @@ public function getRules(): array {
'lowercase_cast' => true,
'lowercase_constants' => true,
'lowercase_keywords' => true,
'lowercase_static_reference ' => true,
'lowercase_static_reference' => true,
'method_argument_space' => true,
'no_blank_lines_after_phpdoc' => true,
'no_closing_tag' => true,
Expand All @@ -69,7 +69,7 @@ public function getRules(): array {
'no_whitespace_before_comma_in_array' => true,
'no_whitespace_in_blank_line' => true,
'ordered_imports' => true,
'phpdoc_order ' => true,
'phpdoc_order' => true,
'phpdoc_scalar' => true,
'phpdoc_separation' => true,
'phpdoc_types' => true,
Expand Down

0 comments on commit 081886d

Please sign in to comment.