1
0
mirror of https://github.com/flarum/core.git synced 2025-07-28 20:20:34 +02:00

Move to flarum

This commit is contained in:
SychO9
2021-10-21 10:52:51 +01:00
parent 7e174dd08a
commit a144c026f3
53 changed files with 363 additions and 171 deletions

View File

@@ -1,14 +1,21 @@
<?php
namespace SychO\PackageManager\Api\Controller;
/*
* This file is part of Flarum.
*
* For detailed copyright and license information, please view the
* LICENSE file that was distributed with this source code.
*/
namespace Flarum\PackageManager\Api\Controller;
use Flarum\Api\Controller\AbstractDeleteController;
use Flarum\Bus\Dispatcher;
use Flarum\Http\RequestUtil;
use Illuminate\Support\Arr;
use SychO\PackageManager\Api\Serializer\ExtensionSerializer;
use Flarum\PackageManager\Api\Serializer\ExtensionSerializer;
use Psr\Http\Message\ServerRequestInterface;
use SychO\PackageManager\Command\RemoveExtension;
use Flarum\PackageManager\Command\RemoveExtension;
class RemoveExtensionController extends AbstractDeleteController
{