[ Index ]

PHP Cross Reference of phpBB-3.3.14-deutsch

title

Body

[close]

/vendor/ocramius/proxy-manager/src/ProxyManager/GeneratorStrategy/ -> GeneratorStrategyInterface.php (source)

   1  <?php
   2  
   3  declare(strict_types=1);
   4  
   5  namespace ProxyManager\GeneratorStrategy;
   6  
   7  use Zend\Code\Generator\ClassGenerator;
   8  
   9  /**
  10   * Generator strategy interface - defines basic behavior of class generators
  11   *
  12   * @author Marco Pivetta <ocramius@gmail.com>
  13   * @license MIT
  14   */
  15  interface GeneratorStrategyInterface
  16  {
  17      /**
  18       * Generate the provided class
  19       */
  20      public function generate(ClassGenerator $classGenerator) : string;
  21  }


Generated: Mon Nov 25 19:05:08 2024 Cross-referenced by PHPXref 0.7.1