File tree Expand file tree Collapse file tree 2 files changed +4
-9
lines changed Expand file tree Collapse file tree 2 files changed +4
-9
lines changed Original file line number Diff line number Diff line change 10
10
11
11
namespace MathiasReker \PhpChmod \Exception ;
12
12
13
- use RuntimeException ;
14
-
15
13
/**
16
14
* Thrown to indicate that a method has been passed an illegal or
17
15
* inappropriate argument.
18
16
*/
19
- final class InvalidArgumentException extends RuntimeException
17
+ final class InvalidArgumentException extends \ RuntimeException
20
18
{
21
19
}
Original file line number Diff line number Diff line change 10
10
11
11
namespace MathiasReker \PhpChmod \Tests \Unit ;
12
12
13
- use FilesystemIterator ;
14
13
use MathiasReker \PhpChmod \Exception \InvalidArgumentException ;
15
14
use MathiasReker \PhpChmod \Scanner ;
16
15
use MathiasReker \PhpChmod \Util \OperatingSystem ;
17
16
use PHPUnit \Framework \TestCase ;
18
- use RecursiveDirectoryIterator ;
19
- use RecursiveIteratorIterator ;
20
17
21
18
/**
22
19
* @internal
@@ -423,9 +420,9 @@ protected function setUp(): void
423
420
424
421
protected function tearDown (): void
425
422
{
426
- $ paths = new RecursiveIteratorIterator (
427
- new RecursiveDirectoryIterator (self ::ROOT , FilesystemIterator::SKIP_DOTS ),
428
- RecursiveIteratorIterator::CHILD_FIRST );
423
+ $ paths = new \ RecursiveIteratorIterator (
424
+ new \ RecursiveDirectoryIterator (self ::ROOT , \ FilesystemIterator::SKIP_DOTS ),
425
+ \ RecursiveIteratorIterator::CHILD_FIRST );
429
426
430
427
foreach ($ paths as $ path ) {
431
428
if ($ path ->isDir ()) {
You can’t perform that action at this time.
0 commit comments