Flarum\Core\Command\DeletePostHandler::__construct PHP Method

__construct() public method

public __construct ( Illuminate\Contracts\Events\Dispatcher $events, PostRepository $posts )
$events Illuminate\Contracts\Events\Dispatcher
$posts Flarum\Core\Repository\PostRepository
    public function __construct(Dispatcher $events, PostRepository $posts)
    {
        $this->events = $events;
        $this->posts = $posts;
    }
DeletePostHandler