__construct() публичный Метод

public __construct ( WebApp $webApp, Illuminate\Contracts\Events\Dispatcher $events )
$webApp Flarum\Forum\WebApp
$events Illuminate\Contracts\Events\Dispatcher
Пример #1
0
 /**
  * {@inheritdoc}
  */
 public function __construct(WebApp $webApp, Dispatcher $events, ApiClient $api)
 {
     parent::__construct($webApp, $events);
     $this->api = $api;
 }
Пример #2
0
 /**
  * {@inheritdoc}
  */
 public function __construct(WebApp $webApp, Dispatcher $events, Client $api, UrlGenerator $url)
 {
     parent::__construct($webApp, $events);
     $this->api = $api;
     $this->url = $url;
 }