| 1 | <?php |
||
| 9 | abstract class AbstractServerInformation implements ServerInformationInterface |
||
| 10 | { |
||
| 11 | /** @var ServerInformationLineFactory */ |
||
| 12 | protected $serverInformationLineFactory; |
||
| 13 | |||
| 14 | /** @var AdminGroups */ |
||
| 15 | protected $adminGroupHelper; |
||
| 16 | |||
| 17 | /** @var string|null */ |
||
| 18 | protected $requiredPermission; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * AbstractServerInformation constructor. |
||
| 22 | * |
||
| 23 | * @param ServerInformationLineFactory\ $serverInformationLineFactory |
||
| 24 | * @param AdminGroups $adminGroupHelper |
||
| 25 | * @param string|null $requiredPermission |
||
| 26 | */ |
||
| 27 | public function __construct( |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @inheritdoc |
||
| 39 | */ |
||
| 40 | public function canShow(string $login): bool |
||
| 48 | } |
||
| 49 |