Behat\Behat\Transformation\Transformation\ColumnBasedTableTransformation::supportsDefinitionAndArgument PHP Метод

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

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 === 'table:' . implode(',', $argumentValue->getRow(0)) || $this->pattern === 'table:*';
    }