-
-
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.
- Loading branch information
Showing
3 changed files
with
83 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
<?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' => 'Attributes', | ||
// 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' => [], | ||
], | ||
|
||
'FQCN attribute' => <<<'PHP' | ||
<?php | ||
namespace PhpScoper\Command; | ||
#[\PhpScoper\Attribute\AsCommand(name: "main")] | ||
class MainCommand {} | ||
---- | ||
<?php | ||
namespace Humbug\PhpScoper\Command; | ||
#[\Humbug\PhpScoper\Attribute\AsCommand(name: "main")] | ||
class MainCommand | ||
{ | ||
} | ||
|
||
PHP, | ||
|
||
'imported attribute' => <<<'PHP' | ||
<?php | ||
namespace PhpScoper\Command; | ||
use PhpScoper\Attribute\AsCommand; | ||
#[AsCommand(name: "main")] | ||
class MainCommand {} | ||
---- | ||
<?php | ||
namespace Humbug\PhpScoper\Command; | ||
use Humbug\PhpScoper\Attribute\AsCommand; | ||
#[AsCommand(name: "main")] | ||
class MainCommand | ||
{ | ||
} | ||
|
||
PHP, | ||
]; |
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