| 1 | <?php |
||
| 8 | class ProxyClassGenerator |
||
| 9 | { |
||
| 10 | const UNSAFE_METHODS = ['__call', '__construct', '__destruct', '__clone']; |
||
| 11 | |||
| 12 | private static $template = ' |
||
| 13 | return new class extends %s implements %s |
||
| 14 | { |
||
| 15 | use %s; |
||
| 16 | %s |
||
| 17 | }; |
||
| 18 | '; |
||
| 19 | |||
| 20 | 8 | public static function generateCode(string $classWillBeEtended): string |
|
| 39 | } |
||
| 40 |