Phpro\SoapClient\CodeGenerator\Rules\TypeMapRule::apply PHP Метод

apply() публичный Метод

public apply ( Phpro\SoapClient\CodeGenerator\Context\ContextInterface $context )
$context Phpro\SoapClient\CodeGenerator\Context\ContextInterface
    public function apply(ContextInterface $context)
    {
        $type = $context->getType();
        $typeName = $type->getName();
        $rule = array_key_exists($typeName, $this->typeMap) ? $this->typeMap[$typeName] : $this->defaultRule;
        $rule->apply($context);
    }