getApi() public method

Get the api configuration name.
public getApi ( ) : string
return string
コード例 #1
0
ファイル: RequestBagTest.php プロジェクト: Webiny/Framework
 public function testSetGetApi()
 {
     $rb = new RequestBag();
     $rb->setApi('ExampleApi');
     $this->assertSame('ExampleApi', $rb->getApi());
 }