ApiPlatform\Core\PathResolver\CustomOperationPathResolver::resolveOperationPath PHP 메소드

resolveOperationPath() 공개 메소드

public resolveOperationPath ( string $resourceShortName, array $operation, boolean $collection ) : string
$resourceShortName string
$operation array
$collection boolean
리턴 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