Skip to content

Commit edd1f5c

Browse files
Reorganize
1 parent c345268 commit edd1f5c

File tree

7 files changed

+10
-6
lines changed

7 files changed

+10
-6
lines changed

src/CodeCoverage.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
use SebastianBergmann\CodeCoverage\Driver\Driver;
3030
use SebastianBergmann\CodeCoverage\Node\Builder;
3131
use SebastianBergmann\CodeCoverage\Node\Directory;
32+
use SebastianBergmann\CodeCoverage\StaticAnalysis\IgnoredLinesFinder;
3233
use SebastianBergmann\CodeUnitReverseLookup\Wizard;
3334

3435
/**

src/RawCodeCoverageData.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
use function in_array;
2020
use function range;
2121
use SebastianBergmann\CodeCoverage\Driver\Driver;
22+
use SebastianBergmann\CodeCoverage\StaticAnalysis\ExecutableLinesFinder;
2223

2324
/**
2425
* @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage

src/ExecutableLinesFinder.php renamed to src/StaticAnalysis/ExecutableLinesFinder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*/
10-
namespace SebastianBergmann\CodeCoverage;
10+
namespace SebastianBergmann\CodeCoverage\StaticAnalysis;
1111

1212
use PhpParser\Error;
1313
use PhpParser\NodeTraverser;

src/ExecutableLinesFindingVisitor.php renamed to src/StaticAnalysis/ExecutableLinesFindingVisitor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*/
10-
namespace SebastianBergmann\CodeCoverage;
10+
namespace SebastianBergmann\CodeCoverage\StaticAnalysis;
1111

1212
use function array_unique;
1313
use function sort;

src/IgnoredLinesFinder.php renamed to src/StaticAnalysis/IgnoredLinesFinder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*/
10-
namespace SebastianBergmann\CodeCoverage;
10+
namespace SebastianBergmann\CodeCoverage\StaticAnalysis;
1111

1212
use const T_CLASS;
1313
use const T_COMMENT;

src/IgnoredLinesFindingVisitor.php renamed to src/StaticAnalysis/IgnoredLinesFindingVisitor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*/
10-
namespace SebastianBergmann\CodeCoverage;
10+
namespace SebastianBergmann\CodeCoverage\StaticAnalysis;
1111

1212
use function array_merge;
1313
use function range;

tests/tests/IgnoredLinesFinderTest.php renamed to tests/tests/StaticAnalysis/IgnoredLinesFinderTest.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*/
10-
namespace SebastianBergmann\CodeCoverage;
10+
namespace SebastianBergmann\CodeCoverage\StaticAnalysis;
11+
12+
use PHPUnit\Framework\TestCase;
1113

1214
/**
13-
* @covers \SebastianBergmann\CodeCoverage\IgnoredLinesFinder
15+
* @covers \SebastianBergmann\CodeCoverage\StaticAnalysis\IgnoredLinesFinder
1416
*/
1517
final class IgnoredLinesFinderTest extends TestCase
1618
{

0 commit comments

Comments
 (0)