/
home
/
obinna
/
html
/
amply
/
vendor
/
friendsofphp
/
proxy-manager-lts
/
src
/
ProxyManager
/
Generator
/
Upload File
HOME
<?php declare(strict_types=1); namespace ProxyManager\Generator; use Laminas\Code\Generator\DocBlockGenerator; use Laminas\Code\Generator\MethodGenerator as LaminasMethodGenerator; use Laminas\Code\Reflection\MethodReflection; /** * Method generator that fixes minor quirks in ZF2's method generator */ class MethodGenerator extends LaminasMethodGenerator { /** * @return static */ public static function fromReflectionWithoutBodyAndDocBlock(MethodReflection $reflectionMethod): self { /** @var static $method */ $method = parent::copyMethodSignature($reflectionMethod); $method->setInterface(false); $method->setBody(''); return $method; } /** * {@inheritDoc} override needed to specify type in more detail */ public function getDocBlock(): ?DocBlockGenerator { return parent::getDocBlock(); } /** * {@inheritDoc} override needed to specify type in more detail */ public function getSourceContent(): ?string { return parent::getSourceContent(); } }