2018-11-14 02:17:27 +01:00
|
|
|
<?php
|
|
|
|
|
2023-02-03 20:41:59 +01:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2018-11-14 02:17:27 +01:00
|
|
|
namespace Engelsystem\Test\Unit\Middleware\Stub;
|
|
|
|
|
|
|
|
use Engelsystem\Controllers\BaseController;
|
|
|
|
|
|
|
|
class ControllerImplementation extends BaseController
|
|
|
|
{
|
2022-12-14 19:15:20 +01:00
|
|
|
public function setPermissions(array $permissions): void
|
2018-11-14 02:17:27 +01:00
|
|
|
{
|
|
|
|
$this->permissions = $permissions;
|
|
|
|
}
|
|
|
|
|
2022-12-14 19:15:20 +01:00
|
|
|
public function actionStub(): string
|
2018-11-14 02:17:27 +01:00
|
|
|
{
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
}
|