Behat\Behat\Transformation\Transformation\TableRowTransformation::supportsDefinitionAndArgument PHP Method

supportsDefinitionAndArgument() public method

public supportsDefinitionAndArgument ( Behat\Behat\Definition\Call\DefinitionCall $definitionCall, $argumentIndex, $argumentValue )
$definitionCall Behat\Behat\Definition\Call\DefinitionCall
    public function supportsDefinitionAndArgument(DefinitionCall $definitionCall, $argumentIndex, $argumentValue)
    {
        if (!$argumentValue instanceof TableNode) {
            return false;
        }
        return $this->pattern === 'row:' . implode(',', $argumentValue->getRow(0));
    }