-
-
Notifications
You must be signed in to change notification settings - Fork 79
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
20 changed files
with
387 additions
and
26 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
<?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. | ||
*/ | ||
|
||
use Humbug\PhpScoper\SpecFramework\Config\Meta; | ||
use Humbug\PhpScoper\SpecFramework\Config\SpecWithConfig; | ||
|
||
return [ | ||
'meta' => new Meta( | ||
title: 'Ensures the exposed symbols follow the required hierarchy.', | ||
exposeClasses: ['/.h*/'], | ||
), | ||
|
||
'PHP 8.1 Polyfill (right order)' => SpecWithConfig::create( | ||
spec: <<<'PHP' | ||
<?php | ||
interface Stringeable {} | ||
class PhpTokens implements Stringeable {} | ||
---- | ||
<?php | ||
namespace Humbug; | ||
interface Stringeable | ||
{ | ||
} | ||
\class_alias('Humbug\Stringeable', 'Stringeable', \false); | ||
class PhpTokens implements \Humbug\Stringeable | ||
{ | ||
} | ||
\class_alias('Humbug\PhpTokens', 'PhpTokens', \false); | ||
|
||
PHP, | ||
expectedRecordedClasses: [ | ||
['Stringeable', 'Humbug\Stringeable'], | ||
['PhpTokens', 'Humbug\PhpTokens'], | ||
], | ||
), | ||
|
||
'PHP 8.1 Polyfill (wrong order)' => SpecWithConfig::create( | ||
spec: <<<'PHP' | ||
<?php | ||
class PhpTokens implements Stringeable {} | ||
interface Stringeable {} | ||
---- | ||
<?php | ||
namespace Humbug; | ||
class PhpTokens implements \Humbug\Stringeable | ||
{ | ||
} | ||
\class_alias('Humbug\PhpTokens', 'PhpTokens', \false); | ||
interface Stringeable | ||
{ | ||
} | ||
\class_alias('Humbug\Stringeable', 'Stringeable', \false); | ||
|
||
PHP, | ||
expectedRecordedClasses: [ | ||
['Stringeable', 'Humbug\Stringeable'], | ||
['PhpTokens', 'Humbug\PhpTokens'], | ||
], | ||
), | ||
|
||
'simple case with extend' => SpecWithConfig::create( | ||
spec: <<<'PHP' | ||
<?php | ||
class Frame extends Window {} | ||
abstract class Window implements ObjectInterface {} | ||
interface ObjectInterface {} | ||
---- | ||
<?php | ||
namespace Humbug; | ||
class PhpTokens implements \Humbug\Stringeable | ||
{ | ||
} | ||
\class_alias('Humbug\PhpTokens', 'PhpTokens', \false); | ||
interface Stringeable | ||
{ | ||
} | ||
\class_alias('Humbug\Stringeable', 'Stringeable', \false); | ||
|
||
PHP, | ||
expectedRecordedClasses: [ | ||
['Stringeable', 'Humbug\Stringeable'], | ||
['PhpTokens', 'Humbug\PhpTokens'], | ||
], | ||
), | ||
]; |
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,10 @@ | ||
{ | ||
"bin": "index.php", | ||
"autoload": { | ||
"psr-4": { | ||
"Set041\\Polyfill\\": "polyfill/", | ||
"": "src/" | ||
}, | ||
"classmap": ["stubs"] | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 @@ | ||
OK. |
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,10 @@ | ||
<?php declare(strict_types=1); | ||
|
||
require file_exists(__DIR__.'/vendor/scoper-autoload.php') | ||
? __DIR__.'/vendor/scoper-autoload.php' | ||
: __DIR__.'/vendor/autoload.php'; | ||
|
||
new Frame(); | ||
new Window(); | ||
|
||
echo "OK.".PHP_EOL; |
7 changes: 7 additions & 0 deletions
7
fixtures/set041-exposed-symbols-hierarchy/polyfill/Polyfill.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?php | ||
|
||
namespace Set041\Polyfill; | ||
|
||
final class PhpTokenLike implements \StringeableLike | ||
{ | ||
} |
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,13 @@ | ||
<?php declare(strict_types=1); | ||
|
||
return [ | ||
'exclude-files' => [ | ||
__DIR__.'/index.php', | ||
], | ||
'expose-classes' => [ | ||
'Set041\Polyfill\PhpTokenLike', | ||
], | ||
'exclude-classes' => [ | ||
'StringeableLike', | ||
], | ||
]; |
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,5 @@ | ||
<?php declare(strict_types=1); | ||
|
||
abstract class Component implements ObjectInterface | ||
{ | ||
} |
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,5 @@ | ||
<?php declare(strict_types=1); | ||
|
||
class Frame extends Window implements ObjectInterface | ||
{ | ||
} |
5 changes: 5 additions & 0 deletions
5
fixtures/set041-exposed-symbols-hierarchy/src/ObjectInterface.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?php declare(strict_types=1); | ||
|
||
interface ObjectInterface | ||
{ | ||
} |
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,5 @@ | ||
<?php declare(strict_types=1); | ||
|
||
class Window extends Component | ||
{ | ||
} |
7 changes: 7 additions & 0 deletions
7
fixtures/set041-exposed-symbols-hierarchy/stubs/StringeableLike.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?php | ||
|
||
if (\PHP_VERSION_ID < PHP_INT_MIN) { | ||
interface StringableLike | ||
{ | ||
} | ||
} |
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,110 @@ | ||
<?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. | ||
*/ | ||
|
||
use Humbug\PhpScoper\SpecFramework\Config\Meta; | ||
use Humbug\PhpScoper\SpecFramework\Config\SpecWithConfig; | ||
|
||
return [ | ||
'meta' => new Meta( | ||
title: 'Ensures the exposed symbols follow the required hierarchy.', | ||
exposeClasses: ['/.h*/'], | ||
), | ||
|
||
'PHP 8.1 Polyfill (right order)' => SpecWithConfig::create( | ||
spec: <<<'PHP' | ||
<?php | ||
interface Stringeable {} | ||
class PhpTokens implements Stringeable {} | ||
---- | ||
<?php | ||
namespace Humbug; | ||
interface Stringeable | ||
{ | ||
} | ||
\class_alias('Humbug\Stringeable', 'Stringeable', \false); | ||
class PhpTokens implements \Humbug\Stringeable | ||
{ | ||
} | ||
\class_alias('Humbug\PhpTokens', 'PhpTokens', \false); | ||
|
||
PHP, | ||
expectedRecordedClasses: [ | ||
['Stringeable', 'Humbug\Stringeable'], | ||
['PhpTokens', 'Humbug\PhpTokens'], | ||
], | ||
), | ||
|
||
'PHP 8.1 Polyfill (wrong order)' => SpecWithConfig::create( | ||
spec: <<<'PHP' | ||
<?php | ||
class PhpTokens implements Stringeable {} | ||
interface Stringeable {} | ||
---- | ||
<?php | ||
namespace Humbug; | ||
class PhpTokens implements \Humbug\Stringeable | ||
{ | ||
} | ||
\class_alias('Humbug\PhpTokens', 'PhpTokens', \false); | ||
interface Stringeable | ||
{ | ||
} | ||
\class_alias('Humbug\Stringeable', 'Stringeable', \false); | ||
|
||
PHP, | ||
expectedRecordedClasses: [ | ||
['Stringeable', 'Humbug\Stringeable'], | ||
['PhpTokens', 'Humbug\PhpTokens'], | ||
], | ||
), | ||
|
||
'simple case with extend' => SpecWithConfig::create( | ||
spec: <<<'PHP' | ||
<?php | ||
class Frame extends Window {} | ||
abstract class Window implements ObjectInterface {} | ||
interface Component extends FrameInterface, ObjectInterface {} | ||
interface FrameInterface {} | ||
interface ObjectInterface {} | ||
---- | ||
<?php | ||
namespace Humbug; | ||
class PhpTokens implements \Humbug\Stringeable | ||
{ | ||
} | ||
\class_alias('Humbug\PhpTokens', 'PhpTokens', \false); | ||
interface Stringeable | ||
{ | ||
} | ||
\class_alias('Humbug\Stringeable', 'Stringeable', \false); | ||
|
||
PHP, | ||
expectedRecordedClasses: [ | ||
['Stringeable', 'Humbug\Stringeable'], | ||
['PhpTokens', 'Humbug\PhpTokens'], | ||
], | ||
), | ||
]; |
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
Oops, something went wrong.