put() 공개 메소드

Adds put route
public put ( string $path, array | callable $options, array $requirements = [] ) : Scalr\Api\Rest\Routing\Route
$path string The path pattern of the route
$options array | callable The options
$requirements array optional The requirements
리턴 Scalr\Api\Rest\Routing\Route Returns route instance
예제 #1
0
 /**
  * @test
  */
 public function testPut()
 {
     $route = $this->app->put('/path', function () {
         /* do nothing */
     });
     $this->assertEquals([Request::METHOD_PUT], $route->getMethods());
 }
예제 #2
0
 /**
  * {@inheritdoc}
  * @see Application::put()
  */
 public function put($path, $options, $requirements = [])
 {
     return parent::put($path, $options, $requirements)->addMethod(Request::METHOD_OPTIONS);
 }