1
0
mirror of https://github.com/flarum/core.git synced 2025-07-29 12:40:40 +02:00
Files
php-flarum/extensions/embed/src/EmbeddedDiscussionController.php
2017-10-03 19:22:11 +02:00

29 lines
704 B
PHP

<?php
/*
* This file is part of Flarum.
*
* (c) Toby Zerner <toby.zerner@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Flarum\Embed;
use Flarum\Api\Client;
use Flarum\Forum\Controller\DiscussionController;
use Flarum\Forum\Frontend;
use Flarum\Http\UrlGenerator;
use Illuminate\Contracts\Events\Dispatcher;
class EmbeddedDiscussionController extends DiscussionController
{
/**
* {@inheritdoc}
*/
public function __construct(Frontend $frontend, Dispatcher $events, Client $api, UrlGenerator $url)
{
parent::__construct($frontend, $events, $api, $url);
}
}