PhalconRest\Api\ApiEndpoint::factory PHP 메소드

factory() 공개 정적인 메소드

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