ApiPlatform\Core\PathResolver\CustomOperationPathResolver::resolveOperationPath PHP Method

resolveOperationPath() public method

public resolveOperationPath ( string $resourceShortName, array $operation, boolean $collection ) : string
$resourceShortName string
$operation array
$collection boolean
return string
    public function resolveOperationPath(string $resourceShortName, array $operation, bool $collection) : string
    {
        if (isset($operation['path'])) {
            return $operation['path'];
        }
        return $this->deferred->resolveOperationPath($resourceShortName, $operation, $collection);
    }
CustomOperationPathResolver