Nelmio\Alice\Generator\Resolver\Value\ChainableValueResolverInterface::canResolve PHP Method

canResolve() public method

public canResolve ( Nelmio\Alice\Definition\ValueInterface $value ) : boolean
$value Nelmio\Alice\Definition\ValueInterface
return boolean
    public function canResolve(ValueInterface $value) : bool;

Usage Example

 /**
  * @inheritdoc
  */
 public function canResolve(ValueInterface $value) : bool
 {
     return $this->decoratedResolver->canResolve($value);
 }
ChainableValueResolverInterface