/**
     * Apply Prophecy functionality to class node.
     *
     * @param ClassNode $node
     */
    public function apply(ClassNode $node)
    {
        $node->addInterface('Prophecy\\Prophecy\\ProphecySubjectInterface');
        $node->addProperty('objectProphecy', 'private');
        foreach ($node->getMethods() as $name => $method) {
            if ('__construct' === strtolower($name)) {
                continue;
            }
            $method->setCode('return $this->getProphecy()->makeProphecyMethodCall(__FUNCTION__, func_get_args());');
        }
        $prophecySetter = new MethodNode('setProphecy');
        $prophecyArgument = new ArgumentNode('prophecy');
        $prophecyArgument->setTypeHint('Prophecy\\Prophecy\\ProphecyInterface');
        $prophecySetter->addArgument($prophecyArgument);
        $prophecySetter->setCode('$this->objectProphecy = $prophecy;');
        $prophecyGetter = new MethodNode('getProphecy');
        $prophecyGetter->setCode('return $this->objectProphecy;');
        if ($node->hasMethod('__call')) {
            $__call = $node->getMethod('__call');
        } else {
            $__call = new MethodNode('__call');
            $__call->addArgument(new ArgumentNode('name'));
            $__call->addArgument(new ArgumentNode('arguments'));
            $node->addMethod($__call);
        }
        $__call->setCode(<<<PHP
throw new \\Prophecy\\Exception\\Doubler\\MethodNotFoundException(
    sprintf('Method `%s::%s()` not found.', get_class(\$this), func_get_arg(0)),
    \$this->getProphecy(), func_get_arg(0)
);
PHP
);
        $node->addMethod($prophecySetter);
        $node->addMethod($prophecyGetter);
    }
Esempio n. 2
0
 private function reflectArgumentToNode(ReflectionParameter $parameter, Node\MethodNode $methodNode)
 {
     $name = $parameter->getName() == '...' ? '__dot_dot_dot__' : $parameter->getName();
     $node = new Node\ArgumentNode($name);
     $node->setTypeHint($this->getTypeHint($parameter));
     if (true === $parameter->isDefaultValueAvailable()) {
         $node->setDefault($parameter->getDefaultValue());
     } elseif (true === $parameter->isOptional() || true === $parameter->allowsNull()) {
         $node->setDefault(null);
     }
     if (true === $parameter->isPassedByReference()) {
         $node->setAsPassedByReference();
     }
     $methodNode->addArgument($node);
 }
 private function reflectArgumentToNode(ReflectionParameter $parameter, Node\MethodNode $methodNode)
 {
     $name = $parameter->getName() == '...' ? '__dot_dot_dot__' : $parameter->getName();
     $node = new Node\ArgumentNode($name);
     $node->setTypeHint($this->getTypeHint($parameter));
     if ($this->isVariadic($parameter)) {
         $node->setAsVariadic();
     }
     if ($this->hasDefaultValue($parameter)) {
         $node->setDefault($this->getDefaultValue($parameter));
     }
     if ($parameter->isPassedByReference()) {
         $node->setAsPassedByReference();
     }
     $methodNode->addArgument($node);
 }