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