コード例 #1
0
ファイル: ApiFactoryTest.php プロジェクト: awebc/web_xbf
 public function testCreate()
 {
     $this->assertInstanceOf('League\\Glide\\Api\\Api', ApiFactory::create());
 }
コード例 #2
0
ファイル: ServerFactory.php プロジェクト: awebc/web_xbf
 /**
  * Get the image manipulation API.
  * @return Api The image manipulation API.
  */
 public function getApi()
 {
     return ApiFactory::create($this->config);
 }