Skip to content

Commit 7ad5660

Browse files
Fix CS/WS issues
1 parent 21b2f31 commit 7ad5660

File tree

10 files changed

+80
-0
lines changed

10 files changed

+80
-0
lines changed

tests/end-to-end/execution-order/fixture/test-classes-with-defects/BarTest.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
<?php declare(strict_types=1);
2+
/*
3+
* This file is part of PHPUnit.
4+
*
5+
* (c) Sebastian Bergmann <sebastian@phpunit.de>
6+
*
7+
* For the full copyright and license information, please view the LICENSE
8+
* file that was distributed with this source code.
9+
*/
210
namespace PHPUnit\TestFixture\ExecutionOrder\Defects;
311

412
use PHPUnit\Framework\Attributes\CoversNothing;

tests/end-to-end/execution-order/fixture/test-classes-with-defects/BazTest.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
<?php declare(strict_types=1);
2+
/*
3+
* This file is part of PHPUnit.
4+
*
5+
* (c) Sebastian Bergmann <sebastian@phpunit.de>
6+
*
7+
* For the full copyright and license information, please view the LICENSE
8+
* file that was distributed with this source code.
9+
*/
210
namespace PHPUnit\TestFixture\ExecutionOrder\Defects;
311

412
use PHPUnit\Framework\Attributes\CoversNothing;

tests/end-to-end/execution-order/fixture/test-classes-with-different-sizes/EndToEndTest.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
<?php declare(strict_types=1);
2+
/*
3+
* This file is part of PHPUnit.
4+
*
5+
* (c) Sebastian Bergmann <sebastian@phpunit.de>
6+
*
7+
* For the full copyright and license information, please view the LICENSE
8+
* file that was distributed with this source code.
9+
*/
210
namespace PHPUnit\TestFixture\ExecutionOrder\DifferentSizes;
311

412
use PHPUnit\Framework\Attributes\CoversNothing;

tests/end-to-end/execution-order/fixture/test-classes-with-different-sizes/IntegrationTest.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
<?php declare(strict_types=1);
2+
/*
3+
* This file is part of PHPUnit.
4+
*
5+
* (c) Sebastian Bergmann <sebastian@phpunit.de>
6+
*
7+
* For the full copyright and license information, please view the LICENSE
8+
* file that was distributed with this source code.
9+
*/
210
namespace PHPUnit\TestFixture\ExecutionOrder\DifferentSizes;
311

412
use PHPUnit\Framework\Attributes\CoversNothing;

tests/end-to-end/execution-order/fixture/test-classes-with-different-sizes/UnitTest.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
<?php declare(strict_types=1);
2+
/*
3+
* This file is part of PHPUnit.
4+
*
5+
* (c) Sebastian Bergmann <sebastian@phpunit.de>
6+
*
7+
* For the full copyright and license information, please view the LICENSE
8+
* file that was distributed with this source code.
9+
*/
210
namespace PHPUnit\TestFixture\ExecutionOrder\DifferentSizes;
311

412
use PHPUnit\Framework\Attributes\CoversNothing;

tests/end-to-end/execution-order/fixture/test-classes/BarTest.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
<?php declare(strict_types=1);
2+
/*
3+
* This file is part of PHPUnit.
4+
*
5+
* (c) Sebastian Bergmann <sebastian@phpunit.de>
6+
*
7+
* For the full copyright and license information, please view the LICENSE
8+
* file that was distributed with this source code.
9+
*/
210
namespace PHPUnit\TestFixture\ExecutionOrder;
311

412
use PHPUnit\Framework\Attributes\CoversNothing;

tests/end-to-end/execution-order/fixture/test-classes/FooTest.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
<?php declare(strict_types=1);
2+
/*
3+
* This file is part of PHPUnit.
4+
*
5+
* (c) Sebastian Bergmann <sebastian@phpunit.de>
6+
*
7+
* For the full copyright and license information, please view the LICENSE
8+
* file that was distributed with this source code.
9+
*/
210
namespace PHPUnit\TestFixture\ExecutionOrder;
311

412
use PHPUnit\Framework\Attributes\CoversNothing;

tests/end-to-end/execution-order/fixture/test-methods-with-defects/FooTest.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
<?php declare(strict_types=1);
2+
/*
3+
* This file is part of PHPUnit.
4+
*
5+
* (c) Sebastian Bergmann <sebastian@phpunit.de>
6+
*
7+
* For the full copyright and license information, please view the LICENSE
8+
* file that was distributed with this source code.
9+
*/
210
namespace PHPUnit\TestFixture\ExecutionOrder\Defects;
311

412
use PHPUnit\Framework\Attributes\CoversNothing;

tests/end-to-end/execution-order/fixture/test-methods-with-dependencies/FooTest.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
<?php declare(strict_types=1);
2+
/*
3+
* This file is part of PHPUnit.
4+
*
5+
* (c) Sebastian Bergmann <sebastian@phpunit.de>
6+
*
7+
* For the full copyright and license information, please view the LICENSE
8+
* file that was distributed with this source code.
9+
*/
210
namespace PHPUnit\TestFixture\ExecutionOrder\Dependencies;
311

412
use PHPUnit\Framework\Attributes\CoversNothing;

tests/end-to-end/execution-order/fixture/test-methods-with-different-sizes/SizesTest.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
<?php declare(strict_types=1);
2+
/*
3+
* This file is part of PHPUnit.
4+
*
5+
* (c) Sebastian Bergmann <sebastian@phpunit.de>
6+
*
7+
* For the full copyright and license information, please view the LICENSE
8+
* file that was distributed with this source code.
9+
*/
210
namespace PHPUnit\TestFixture\ExecutionOrder\DifferentSizes;
311

412
use PHPUnit\Framework\Attributes\CoversNothing;

0 commit comments

Comments
 (0)