Skip to content

Commit 6ec8a78

Browse files
committed
Fix cs
1 parent c4a6853 commit 6ec8a78

11 files changed

+1
-78
lines changed

src/Internal/CacheReader.php

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
<?php
22

3-
/**
4-
* This file is part of FFI package.
5-
*
6-
* For the full copyright and license information, please view the LICENSE
7-
* file that was distributed with this source code.
8-
*/
9-
103
declare(strict_types=1);
114

125
namespace FFI\Location\Internal;
@@ -70,7 +63,7 @@ private function collect(): array
7063
{
7164
$paths = [];
7265

73-
foreach(\explode("\n", $this->exec()) as $library) {
66+
foreach (\explode("\n", $this->exec()) as $library) {
7467
$directory = \dirname($library);
7568
$isDirectory = $directory !== '.' && $directory !== '';
7669

src/Internal/ConfigReader.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
<?php
22

3-
/**
4-
* This file is part of FFI package.
5-
*
6-
* For the full copyright and license information, please view the LICENSE
7-
* file that was distributed with this source code.
8-
*/
9-
103
declare(strict_types=1);
114

125
namespace FFI\Location\Internal;

src/Internal/ReaderInterface.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
<?php
22

3-
/**
4-
* This file is part of FFI package.
5-
*
6-
* For the full copyright and license information, please view the LICENSE
7-
* file that was distributed with this source code.
8-
*/
9-
103
declare(strict_types=1);
114

125
namespace FFI\Location\Internal;

src/Locator.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
<?php
22

3-
/**
4-
* This file is part of FFI package.
5-
*
6-
* For the full copyright and license information, please view the LICENSE
7-
* file that was distributed with this source code.
8-
*/
9-
103
declare(strict_types=1);
114

125
namespace FFI\Location;

src/Resolver/LinuxPathResolver.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
<?php
22

3-
/**
4-
* This file is part of FFI package.
5-
*
6-
* For the full copyright and license information, please view the LICENSE
7-
* file that was distributed with this source code.
8-
*/
9-
103
declare(strict_types=1);
114

125
namespace FFI\Location\Resolver;

src/Resolver/MacOSPathResolver.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
<?php
22

3-
/**
4-
* This file is part of FFI package.
5-
*
6-
* For the full copyright and license information, please view the LICENSE
7-
* file that was distributed with this source code.
8-
*/
9-
103
declare(strict_types=1);
114

125
namespace FFI\Location\Resolver;

src/Resolver/PathResolver.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
<?php
22

3-
/**
4-
* This file is part of FFI package.
5-
*
6-
* For the full copyright and license information, please view the LICENSE
7-
* file that was distributed with this source code.
8-
*/
9-
103
declare(strict_types=1);
114

125
namespace FFI\Location\Resolver;

src/Resolver/PathResolverInterface.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
<?php
22

3-
/**
4-
* This file is part of FFI package.
5-
*
6-
* For the full copyright and license information, please view the LICENSE
7-
* file that was distributed with this source code.
8-
*/
9-
103
declare(strict_types=1);
114

125
namespace FFI\Location\Resolver;

src/Resolver/UnixAwareResolver.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
<?php
22

3-
/**
4-
* This file is part of FFI package.
5-
*
6-
* For the full copyright and license information, please view the LICENSE
7-
* file that was distributed with this source code.
8-
*/
9-
103
declare(strict_types=1);
114

125
namespace FFI\Location\Resolver;

src/Resolver/WindowsPathResolver.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
<?php
22

3-
/**
4-
* This file is part of FFI package.
5-
*
6-
* For the full copyright and license information, please view the LICENSE
7-
* file that was distributed with this source code.
8-
*/
9-
103
declare(strict_types=1);
114

125
namespace FFI\Location\Resolver;

0 commit comments

Comments
 (0)