This file contains hidden or 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
<?php | |
declare(strict_types=1); | |
namespace Scripts\Rector\Rules; | |
use PhpParser\Node; | |
use PhpParser\Node\Expr\StaticCall; | |
use PhpParser\Node\Stmt\Class_; | |
use PhpParser\Node\Expr\Assign; |
This file contains hidden or 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
<?php | |
namespace Test\PHPBench; | |
use PhpBench\Attributes\ParamProviders; | |
enum BacktraceMode { | |
case EXCEPTION_STRING; | |
case EXCEPTION; | |
case ON_WITH_OBJ; |