parent
3452ddfd6e
commit
057c217800
4 changed files with 64 additions and 0 deletions
@ -0,0 +1,21 @@ |
|||||||
|
<?php |
||||||
|
/** |
||||||
|
* This file is part of TypePHP(AOT). |
||||||
|
* |
||||||
|
* @link https://www.swoole.com/aot/ |
||||||
|
* @contact service@swoole.com |
||||||
|
*/ |
||||||
|
|
||||||
|
class KnownClass |
||||||
|
{ |
||||||
|
} |
||||||
|
|
||||||
|
function autoloadFlag(): bool |
||||||
|
{ |
||||||
|
return false; |
||||||
|
} |
||||||
|
|
||||||
|
function main(): void |
||||||
|
{ |
||||||
|
var_dump(class_exists('KnownClass', autoloadFlag())); |
||||||
|
} |
||||||
Loading…
Reference in new issue