Exemplo n.º 1
0
 public function __construct($path = '/{id}', $httpMethod = Http::DELETE, $handlerMethod = 'delete')
 {
     parent::__construct($path, $httpMethod, $handlerMethod);
 }
Exemplo n.º 2
0
 public function __construct($path = '/{id}', $httpMethod = Http::POST, $handlerMethod = 'create')
 {
     parent::__construct($path, $httpMethod, $handlerMethod);
 }
Exemplo n.º 3
0
 public function __construct($path = '/{id}', $httpMethod = Http::GET, $handlerMethod = 'find')
 {
     parent::__construct($path, $httpMethod, $handlerMethod);
 }