-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
finder.php
50 lines (49 loc) · 1.49 KB
/
finder.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
return \StubsGenerator\Finder::create()
->in('source/wordpress-seo')
->notPath('cli')
->notPath('config/composer')
->notPath('config/php-codeshift')
->notPath('deprecated')
->notPath('migrations')
// Uses ruckusing/ruckusing-migrations.
->notPath('src/loggers/migration-logger.php')
// Assets.
->notPath('css')
->notPath('images')
->notPath('js')
->notPath('languages')
->notPath('vendor_prefixed')
// Referenced in src/config/.
->append(
\StubsGenerator\Finder::create()
->in(['source/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Provider/'])
->files()
)
->append(
\StubsGenerator\Finder::create()
->in(['source/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool/'])
->files()
)
->append(
\StubsGenerator\Finder::create()
->in(['source/wordpress-seo/vendor_prefixed/wordproof/wordpress-sdk/app/'])
->files()
)
->append(
\StubsGenerator\Finder::create()
->in(['source/wordpress-seo/vendor_prefixed/symfony/dependency-injection/'])
->files()
)
->append(
\StubsGenerator\Finder::create()
->in(['source/wordpress-seo/vendor_prefixed/psr/container/src/'])
->files()
)
->append(
\StubsGenerator\Finder::create()
->in(['source/wordpress-seo/vendor_prefixed/psr/log/Psr/Log/'])
->files()
)
->sortByName()
;