Esempio n. 1
0
 public function indent($output, $spaces = 3, $rewrap = false)
 {
     return parent::indent($output, $spaces, $rewrap);
 }
Esempio n. 2
0
 /**
  * Constructor
  *
  * @param IReflectionMethod $method
  */
 public function __construct(IReflectionMethod $method)
 {
     parent::__construct($method);
 }
Esempio n. 3
0
 /**
  * Constructor
  *
  * @param string $classname
  * @throws InvalidArgumentException
  */
 public function __construct(ReflectionClass $reflection)
 {
     parent::__construct($reflection);
 }
Esempio n. 4
0
 /**
  * Constructor
  *
  * @param string $classname
  * @throws InvalidArgumentException
  */
 public function __construct(ReflectionClass $reflection)
 {
     parent::__construct($reflection);
     $this->nameReferences = [];
 }
Esempio n. 5
0
 /**
  * Constructor
  *
  * @param string $classname
  * @throws InvalidArgumentException
  */
 public function __construct(ReflectionClass $reflection)
 {
     parent::__construct($reflection);
     $this->skip_inherited_attr = true;
 }
 public function __construct(ReflectionNamespace $namespace)
 {
     parent::__construct($namespace);
 }