Skip to content

Commit b204105

Browse files
committed
Fix: Run friendsofphp/php-cs-fixer
1 parent 9587021 commit b204105

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+155
-96
lines changed

src/CodeCoverage.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
<?php declare(strict_types=1);
22
/*
3-
* This file is part of the php-code-coverage package.
3+
* This file is part of phpunit/php-code-coverage.
44
*
55
* (c) Sebastian Bergmann <[email protected]>
66
*
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*/
10+
1011
namespace SebastianBergmann\CodeCoverage;
1112

1213
use PHPUnit\Framework\TestCase;

src/Driver/Driver.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
<?php declare(strict_types=1);
22
/*
3-
* This file is part of the php-code-coverage package.
3+
* This file is part of phpunit/php-code-coverage.
44
*
55
* (c) Sebastian Bergmann <[email protected]>
66
*
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*/
10+
1011
namespace SebastianBergmann\CodeCoverage\Driver;
1112

1213
/**

src/Driver/PCOV.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
<?php declare(strict_types=1);
22
/*
3-
* This file is part of the php-code-coverage package.
3+
* This file is part of phpunit/php-code-coverage.
44
*
55
* (c) Sebastian Bergmann <[email protected]>
66
*
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*/
10+
1011
namespace SebastianBergmann\CodeCoverage\Driver;
1112

1213
/**

src/Driver/PHPDBG.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
<?php declare(strict_types=1);
22
/*
3-
* This file is part of the php-code-coverage package.
3+
* This file is part of phpunit/php-code-coverage.
44
*
55
* (c) Sebastian Bergmann <[email protected]>
66
*
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*/
10+
1011
namespace SebastianBergmann\CodeCoverage\Driver;
1112

1213
use SebastianBergmann\CodeCoverage\RuntimeException;

src/Driver/Xdebug.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
<?php declare(strict_types=1);
22
/*
3-
* This file is part of the php-code-coverage package.
3+
* This file is part of phpunit/php-code-coverage.
44
*
55
* (c) Sebastian Bergmann <[email protected]>
66
*
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*/
10+
1011
namespace SebastianBergmann\CodeCoverage\Driver;
1112

1213
use SebastianBergmann\CodeCoverage\Filter;

src/Exception/CoveredCodeNotExecutedException.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
<?php declare(strict_types=1);
22
/*
3-
* This file is part of the php-code-coverage package.
3+
* This file is part of phpunit/php-code-coverage.
44
*
55
* (c) Sebastian Bergmann <[email protected]>
66
*
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*/
10+
1011
namespace SebastianBergmann\CodeCoverage;
1112

1213
/**

src/Exception/Exception.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
<?php declare(strict_types=1);
22
/*
3-
* This file is part of the php-code-coverage package.
3+
* This file is part of phpunit/php-code-coverage.
44
*
55
* (c) Sebastian Bergmann <[email protected]>
66
*
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*/
10+
1011
namespace SebastianBergmann\CodeCoverage;
1112

1213
/**

src/Exception/InvalidArgumentException.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
<?php declare(strict_types=1);
22
/*
3-
* This file is part of the php-code-coverage package.
3+
* This file is part of phpunit/php-code-coverage.
44
*
55
* (c) Sebastian Bergmann <[email protected]>
66
*
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*/
10+
1011
namespace SebastianBergmann\CodeCoverage;
1112

1213
final class InvalidArgumentException extends \InvalidArgumentException implements Exception

src/Exception/MissingCoversAnnotationException.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
<?php declare(strict_types=1);
22
/*
3-
* This file is part of the php-code-coverage package.
3+
* This file is part of phpunit/php-code-coverage.
44
*
55
* (c) Sebastian Bergmann <[email protected]>
66
*
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*/
10+
1011
namespace SebastianBergmann\CodeCoverage;
1112

1213
/**

src/Exception/RuntimeException.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
<?php declare(strict_types=1);
22
/*
3-
* This file is part of the php-code-coverage package.
3+
* This file is part of phpunit/php-code-coverage.
44
*
55
* (c) Sebastian Bergmann <[email protected]>
66
*
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*/
10+
1011
namespace SebastianBergmann\CodeCoverage;
1112

1213
class RuntimeException extends \RuntimeException implements Exception

0 commit comments

Comments
 (0)