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