1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-19 16:11:21 +02:00

Merge branch 'task/sami' into task/sami-ascraeus

* task/sami:
  [task/sami] Establish alphabetical order.
  [task/sami] Also ignore ext/ directory.
This commit is contained in:
Andreas Fischer
2014-05-17 13:07:00 +02:00

View File

@@ -18,8 +18,9 @@ $iterator = Symfony\Component\Finder\Finder::create()
->name('*.php') ->name('*.php')
->in(__DIR__ . '/../phpBB/') ->in(__DIR__ . '/../phpBB/')
->notPath('#^cache/#') ->notPath('#^cache/#')
->notPath('#^vendor/#')
->notPath('#^develop/#') ->notPath('#^develop/#')
->notPath('#^ext/#')
->notPath('#^vendor/#')
->notPath('data') ->notPath('data')
; ;