[ Index ] |
PHP Cross Reference of phpBB-3.3.14-deutsch |
[Summary view] [Print] [Text view]
1 <?php 2 3 declare(strict_types=1); 4 5 namespace ProxyManager\ProxyGenerator; 6 7 use ReflectionClass; 8 use Zend\Code\Generator\ClassGenerator; 9 10 /** 11 * Base interface for proxy generators - describes how a proxy generator should use 12 * reflection classes to modify given class generators 13 * 14 * @author Marco Pivetta <ocramius@gmail.com> 15 * @license MIT 16 */ 17 interface ProxyGeneratorInterface 18 { 19 /** 20 * Apply modifications to the provided $classGenerator to proxy logic from $originalClass 21 * 22 * @param \ReflectionClass $originalClass 23 * @param \Zend\Code\Generator\ClassGenerator $classGenerator 24 * 25 * @return void 26 */ 27 public function generate(ReflectionClass $originalClass, ClassGenerator $classGenerator); 28 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Mon Nov 25 19:05:08 2024 | Cross-referenced by PHPXref 0.7.1 |