Skip to content

Commit

Permalink
[zendframework#3273] Added PHP-CS-Fixer rules
Browse files Browse the repository at this point in the history
- Omit test file known to have issues (as they are required for tests)
  • Loading branch information
weierophinney committed Jan 3, 2013
1 parent 24ccaf5 commit 24cb9e6
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .php_cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?php
echo "Loading " . __FILE__ . "\n";
$finder = Symfony\CS\Finder\DefaultFinder::create()
->notName('TestSampleClass10.php')
->in(__DIR__);
return Symfony\CS\Config\Config::create()
->finder($finder);
6 changes: 6 additions & 0 deletions tests/.php_cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?php
$finder = Symfony\CS\Finder\DefaultFinder::create()
->notName('TestSampleClass10.php')
->in(__DIR__);
return Symfony\CS\Config\Config::create()
->finder($finder);

0 comments on commit 24cb9e6

Please sign in to comment.