-
-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add more tests to show that exclude has priority over exposing (#767)
- Loading branch information
Showing
3 changed files
with
135 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,103 @@ | ||
<?php | ||
|
||
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. | ||
*/ | ||
|
||
return [ | ||
'meta' => [ | ||
'title' => 'Excluding a symbol/namespace should have precedence over exposing a symbol/namespace', | ||
// Default values. If not specified will be the one used | ||
'prefix' => 'Humbug', | ||
|
||
'expose-global-constants' => false, | ||
'expose-global-classes' => false, | ||
'expose-global-functions' => false, | ||
'expose-namespaces' => [], | ||
'expose-constants' => [], | ||
'expose-classes' => [], | ||
'expose-functions' => [], | ||
|
||
'exclude-namespaces' => [], | ||
'exclude-constants' => [], | ||
'exclude-classes' => [], | ||
'exclude-functions' => [], | ||
|
||
'expected-recorded-classes' => [], | ||
'expected-recorded-functions' => [], | ||
], | ||
|
||
'namespace' => [ | ||
'exclude-namespaces' => [ | ||
'Acme', | ||
], | ||
'expose-namespaces' => [ | ||
'Acme', | ||
], | ||
'payload' => <<<'PHP' | ||
<?php | ||
namespace Acme { | ||
class X {} | ||
} | ||
namespace { | ||
new \Acme\X(); | ||
} | ||
---- | ||
<?php | ||
namespace Acme; | ||
class X | ||
{ | ||
} | ||
namespace Humbug; | ||
new \Acme\X(); | ||
|
||
PHP, | ||
], | ||
|
||
'symbol' => [ | ||
'exclude-classes' => [ | ||
'Acme\X', | ||
], | ||
'expose-classes' => [ | ||
'Acme\X', | ||
], | ||
'payload' => <<<'PHP' | ||
<?php | ||
namespace Acme { | ||
class X {} | ||
} | ||
namespace { | ||
new \Acme\X(); | ||
} | ||
---- | ||
<?php | ||
namespace Humbug\Acme; | ||
class X | ||
{ | ||
} | ||
namespace Humbug; | ||
new \Acme\X(); | ||
|
||
PHP, | ||
], | ||
]; |