-
-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
17 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,11 +2,20 @@ | |
|
||
declare(strict_types=1); | ||
|
||
/* | ||
* This file is part of the humbug/php-scoper package. | ||
* | ||
* Copyright (c) 2017 Théo FIDRY <[email protected]>, | ||
* Pádraic Brady <[email protected]> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Humbug\PhpScoper; | ||
|
||
use InvalidArgumentException; | ||
use function KevinGH\Box\FileSystem\dump_file; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
/** | ||
* @covers \Humbug\PhpScoper\Configuration | ||
|
@@ -39,7 +48,6 @@ public function test_it_cannot_create_a_configuration_with_an_invalid_key(): voi | |
'unknown key' => 'val', | ||
]; | ||
PHP | ||
|
||
); | ||
|
||
try { | ||
|
@@ -70,7 +78,6 @@ public function test_it_can_create_a_complete_configuration(): void | |
'whitelist' => ['Foo', 'Bar\*'], | ||
]; | ||
PHP | ||
|
||
); | ||
touch('file1'); | ||
|
||
|