ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Command.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
27#[\Attribute(\Attribute::TARGET_METHOD)]
29{
30 public function __construct(
31 private string $permissions = 'read'
32 ) {
33 }
34
35 public function getPermissions(): string
36 {
37 return $this->permissions;
38 }
39
40}
__construct(private string $permissions='read')
Definition: Command.php:30