* * 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); } }