Flarum\Forum\Controller\WebAppController::__construct PHP Method

__construct() public method

public __construct ( WebApp $webApp, Illuminate\Contracts\Events\Dispatcher $events )
$webApp Flarum\Forum\WebApp
$events Illuminate\Contracts\Events\Dispatcher
    public function __construct(WebApp $webApp, Dispatcher $events)
    {
        $this->webApp = $webApp;
        $this->events = $events;
    }

Usage Example

Beispiel #1
0
 /**
  * {@inheritdoc}
  */
 public function __construct(WebApp $webApp, Dispatcher $events, ApiClient $api)
 {
     parent::__construct($webApp, $events);
     $this->api = $api;
 }
All Usage Examples Of Flarum\Forum\Controller\WebAppController::__construct
WebAppController