1
0
mirror of https://github.com/danog/class-finder.git synced 2024-11-26 12:04:42 +01:00

Normalize trailing and intermediary newlines

This commit is contained in:
Benedikt Franke 2020-03-24 10:08:07 +01:00
parent a813ebb444
commit ab01b51aad
20 changed files with 24 additions and 18 deletions

View File

@ -11,4 +11,3 @@ The Dockerfiles used to create these images are contained in a different reposit
[ClassFinderTestContainers](https://gitlab.com/hpierce1102/ClassFinderTestContainers).
The CI scripts themselves are stored here in `/ci/*`, with the config in `/gitlab-ci.yml`.

View File

@ -47,5 +47,3 @@ disable_functions = exec,passthru,shell_exec,system,proc_open,popen
```
Remove exec from the list and restart your webserver.

View File

@ -3,7 +3,6 @@
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/6.3/phpunit.xsd"
bootstrap="./test/bootstrap.php"
>
<!-- "./vendor/bin/phpunit" \-\-testsuite psr4 -->
<testsuites>
<testsuite name="all">

View File

@ -1,4 +1,5 @@
<?php
namespace HaydenPierce\ClassFinder;
use HaydenPierce\ClassFinder\Classmap\ClassmapEntryFactory;

View File

@ -1,4 +1,5 @@
<?php
namespace HaydenPierce\ClassFinder\Classmap;
use HaydenPierce\ClassFinder\ClassFinder;
@ -60,5 +61,4 @@ class ClassmapEntry
return $namespace === $classNamespace;
}
}

View File

@ -1,4 +1,5 @@
<?php
namespace HaydenPierce\ClassFinder\Classmap;
use HaydenPierce\ClassFinder\AppConfig;

View File

@ -1,4 +1,5 @@
<?php
namespace HaydenPierce\ClassFinder\Classmap;
use HaydenPierce\ClassFinder\Exception\ClassFinderException;

View File

@ -1,4 +1,5 @@
<?php
namespace HaydenPierce\ClassFinder\Files;
class FilesEntry

View File

@ -1,4 +1,5 @@
<?php
namespace HaydenPierce\ClassFinder\Files;
use HaydenPierce\ClassFinder\AppConfig;

View File

@ -1,4 +1,5 @@
<?php
namespace HaydenPierce\ClassFinder\Files;
use HaydenPierce\ClassFinder\Exception\ClassFinderException;

View File

@ -1,4 +1,5 @@
<?php
namespace HaydenPierce\ClassFinder;
interface FinderInterface

View File

@ -1,4 +1,5 @@
<?php
namespace HaydenPierce\ClassFinder\PSR4;
use HaydenPierce\ClassFinder\ClassFinder;

View File

@ -1,4 +1,5 @@
<?php
namespace HaydenPierce\ClassFinder\PSR4;
use HaydenPierce\ClassFinder\ClassFinder;

View File

@ -1,4 +1,5 @@
<?php
namespace HaydenPierce\ClassFinder\PSR4;
use HaydenPierce\ClassFinder\AppConfig;