get() public method

Handle GET requests
public get ( Imbo\EventManager\EventInterface $event )
$event Imbo\EventManager\EventInterface The current event
Beispiel #1
0
 /**
  * @covers Imbo\Resource\Metadata::get
  */
 public function testSupportsHttpGet()
 {
     $this->manager->expects($this->once())->method('trigger')->with('db.metadata.load');
     $this->resource->get($this->event);
 }