mirror of
https://github.com/composer/composer
synced 2025-05-09 00:22:53 +00:00
Avoid ambiguity warning for example directories as well
In particular, PEAR repositories use a classmap and example directories trigger multiple false positive warnings.
This commit is contained in:
parent
65b9cca7b5
commit
836534067b
2 changed files with 2 additions and 2 deletions
|
@ -170,7 +170,7 @@ class ClassMapGeneratorTest extends \PHPUnit_Framework_TestCase
|
|||
"
|
||||
);
|
||||
|
||||
foreach (array('test', 'fixture') as $keyword) {
|
||||
foreach (array('test', 'fixture', 'example') as $keyword) {
|
||||
if (!is_dir($tempDir.'/'.$keyword)) {
|
||||
mkdir($tempDir.'/'.$keyword, 0777, true);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue