PhalconRest\Api\ApiEndpoint::factory PHP Method

factory() public static method

Returns endpoint with default values
public static factory ( string $path, string $httpMethod = HttpMethods::GET, string $handlerMethod = null ) : static
$path string
$httpMethod string
$handlerMethod string
return static
    public static function factory($path, $httpMethod = HttpMethods::GET, $handlerMethod = null)
    {
        return new ApiEndpoint($path, $httpMethod, $handlerMethod);
    }