Conditions | 9 |
Paths | 9 |
Total Lines | 11 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
47 | public function isWriteable(): bool |
||
48 | { |
||
49 | return $this === self::READ_WRITE |
||
50 | || $this === self::WRITE |
||
51 | || $this === self::WRITE_READ |
||
52 | || $this === self::WRITE_END |
||
53 | || $this === self::WRITE_READ_END |
||
54 | || $this === self::CREATE_WRITE |
||
55 | || $this === self::CREATE_WRITE_READ |
||
56 | || $this === self::WRITE_CREATE |
||
57 | || $this === self::WRITE_READ_CREATE; |
||
58 | } |
||
60 |