We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17a0081 commit 42ab58fCopy full SHA for 42ab58f
templates/php/src/Permission.php.twig
@@ -6,22 +6,22 @@ class Permission
6
{
7
public static function read(string $role): string
8
9
- return "read('$role')";
+ return "read("$role")";
10
}
11
public static function write(string $role): string
12
13
- return "write('$role')";
+ return "write("$role")";
14
15
public static function create(string $role): string
16
17
- return "create('$role')";
+ return "create("$role")";
18
19
public static function update(string $role): string
20
21
- return "update('$role')";
+ return "update("$role")";
22
23
public static function delete(string $role): string
24
25
- return "delete('$role')";
+ return "delete("$role")";
26
27
0 commit comments