Home
last modified time | relevance | path

Searched refs:MethodNode (Results 1 – 9 of 9) sorted by path

/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/
H A DDisableConstructorPatch.php15 use Prophecy\Doubler\Generator\Node\MethodNode; alias
45 $node->addMethod(new MethodNode('__construct', ''));
H A DMagicCallPatch.php15 use Prophecy\Doubler\Generator\Node\MethodNode; alias
73 $methodNode = new MethodNode($methodName);
H A DProphecySubjectPatch.php15 use Prophecy\Doubler\Generator\Node\MethodNode; alias
64 $prophecySetter = new MethodNode('setProphecy');
70 $prophecyGetter = new MethodNode('getProphecy');
76 $__call = new MethodNode('__call');
H A DSplFileInfoPatch.php15 use Prophecy\Doubler\Generator\Node\MethodNode; alias
52 $constructor = new MethodNode('__construct');
H A DTraversablePatch.php15 use Prophecy\Doubler\Generator\Node\MethodNode; alias
67 $node->addMethod(new MethodNode('current'));
68 $node->addMethod(new MethodNode('key'));
69 $node->addMethod(new MethodNode('next'));
70 $node->addMethod(new MethodNode('rewind'));
71 $node->addMethod(new MethodNode('valid'));
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/
H A DClassCodeGenerator.php65 private function generateMethod(Node\MethodNode $method)
83 private function getReturnType(Node\MethodNode $method)
H A DClassMirror.php132 $node = new Node\MethodNode($method->getName());
173 …private function reflectArgumentToNode(ReflectionParameter $parameter, Node\MethodNode $methodNode)
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/
H A DClassNode.php30 * @var MethodNode[]
96 * @return MethodNode[]
103 public function addMethod(MethodNode $method, $force = false)
125 * @return MethodNode|null
H A DMethodNode.php22 class MethodNode class