Skip to content

Commit

Permalink
Fix psr for strict_types declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosas committed Sep 27, 2019
1 parent 9cdb403 commit 668106f
Show file tree
Hide file tree
Showing 24 changed files with 72 additions and 24 deletions.
4 changes: 3 additions & 1 deletion phpat
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/usr/bin/env php
<?php declare(strict_types=1);
<?php

declare(strict_types=1);

use PhpAT\DependencyInjection\Provider;
use Symfony\Component\DependencyInjection\ContainerBuilder;
Expand Down
4 changes: 3 additions & 1 deletion src/App.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php

declare(strict_types=1);

namespace PhpAT;

Expand Down
4 changes: 3 additions & 1 deletion src/DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php

declare(strict_types=1);

namespace PhpAT\DependencyInjection;

Expand Down
4 changes: 3 additions & 1 deletion src/DependencyInjection/Provider.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php

declare(strict_types=1);

namespace PhpAT\DependencyInjection;

Expand Down
4 changes: 3 additions & 1 deletion src/File/FileFinder.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php

declare(strict_types=1);

namespace PhpAT\File;

Expand Down
4 changes: 3 additions & 1 deletion src/File/PathnameFilterIterator.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php

declare(strict_types=1);

namespace PhpAT\File;

Expand Down
4 changes: 3 additions & 1 deletion src/File/SymfonyFinderAdapter.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php

declare(strict_types=1);

namespace PhpAT\File;

Expand Down
4 changes: 3 additions & 1 deletion src/Rule/Rule.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php

declare(strict_types=1);

namespace PhpAT\Rule;

Expand Down
4 changes: 3 additions & 1 deletion src/Rule/RuleBuilder.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php

declare(strict_types=1);

namespace PhpAT\Rule;

Expand Down
4 changes: 3 additions & 1 deletion src/Rule/RuleCollection.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php

declare(strict_types=1);

namespace PhpAT\Rule;

Expand Down
4 changes: 3 additions & 1 deletion src/Rule/Selector.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php

declare(strict_types=1);

namespace PhpAT\Rule;

Expand Down
4 changes: 3 additions & 1 deletion src/Rule/Type/Composition.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php

declare(strict_types=1);

namespace PhpAT\Rule\Type;

Expand Down
4 changes: 3 additions & 1 deletion src/Rule/Type/Declaration.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php

declare(strict_types=1);

namespace PhpAT\Rule\Type;

Expand Down
4 changes: 3 additions & 1 deletion src/Rule/Type/Dependency.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php

declare(strict_types=1);

namespace PhpAT\Rule\Type;

Expand Down
4 changes: 3 additions & 1 deletion src/Rule/Type/Inheritance.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php

declare(strict_types=1);

namespace PhpAT\Rule\Type;

Expand Down
4 changes: 3 additions & 1 deletion src/Rule/Type/RuleType.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php

declare(strict_types=1);

namespace PhpAT\Rule\Type;

Expand Down
4 changes: 3 additions & 1 deletion src/Shared/EventSubscriber.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php

declare(strict_types=1);

namespace PhpAT\Shared;

Expand Down
4 changes: 3 additions & 1 deletion src/Statement/Event/StatementNotValidEvent.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php

declare(strict_types=1);

namespace PhpAT\Statement\Event;

Expand Down
4 changes: 3 additions & 1 deletion src/Statement/Statement.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php

declare(strict_types=1);

namespace PhpAT\Statement;

Expand Down
4 changes: 3 additions & 1 deletion src/Statement/StatementBuilder.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php

declare(strict_types=1);

namespace PhpAT\Statement;

Expand Down
4 changes: 3 additions & 1 deletion src/Test/ArchitectureTest.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php

declare(strict_types=1);

namespace PhpAT\Test;

Expand Down
4 changes: 3 additions & 1 deletion src/Test/ArchitectureTestCollection.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php

declare(strict_types=1);

namespace PhpAT\Test;

Expand Down
4 changes: 3 additions & 1 deletion src/Test/FileTestExtractor.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php

declare(strict_types=1);

namespace PhpAT\Test;

Expand Down
4 changes: 3 additions & 1 deletion src/Test/TestExtractor.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php

declare(strict_types=1);

namespace PhpAT\Test;

Expand Down

0 comments on commit 668106f

Please sign in to comment.