Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | class TmpfsVolume extends Volume |
||
8 | { |
||
9 | /** |
||
10 | * @return string |
||
11 | */ |
||
12 | public static function getType(): string |
||
15 | } |
||
16 | |||
17 | /** |
||
18 | * Specify data which should be serialized to JSON |
||
19 | * @link http://php.net/manual/en/jsonserializable.jsonserialize.php |
||
20 | * @return array data which can be serialized by <b>json_encode</b>, |
||
21 | * which is a value of any type other than a resource. |
||
22 | * @since 5.4.0 |
||
23 | */ |
||
24 | public function jsonSerialize(): array |
||
32 |