예제 #1
0
 /**
  * @param array $actionsTags
  * @param array $extensionsTags
  * @param array $apisTags
  * @param array $defaultConfig
  */
 public function __construct(array $actionsTags, array $extensionsTags, array $apisTags, array $defaultConfig = [])
 {
     $this->actionsTags = $actionsTags;
     $this->extensionsTags = $extensionsTags;
     $this->apisTags = $apisTags;
     parent::__construct($defaultConfig);
 }
예제 #2
0
 /**
  * @param array $actionsTags
  * @param array $extensionsTags
  * @param array $apisTags
  */
 public function __construct(array $actionsTags, array $extensionsTags, array $apisTags)
 {
     $this->actionsTags = $actionsTags;
     $this->extensionsTags = $extensionsTags;
     $this->apisTags = $apisTags;
     parent::__construct([]);
 }
 /**
  * __construct.
  *
  * @method __construct
  *
  * @param \Illuminate\Contracts\Foundation\Application $app
  * @param array                                        $defaultConfig
  */
 public function __construct(Application $app, array $defaultConfig = [])
 {
     parent::__construct($defaultConfig);
     $this->app = $app;
 }