Total Complexity | 8 |
Total Lines | 48 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | trait StandaloneLaruploadCallables |
||
8 | { |
||
9 | /** |
||
10 | * @internal |
||
11 | */ |
||
12 | public function url(string $style = Larupload::ORIGINAL_FOLDER): ?string |
||
19 | } |
||
20 | |||
21 | /** |
||
22 | * @internal |
||
23 | */ |
||
24 | public function meta(?string $key = null): object|int|string|null |
||
25 | { |
||
26 | if ($this->internalFunctionIsCallable) { |
||
27 | return parent::meta($key); |
||
28 | } |
||
29 | |||
30 | $this->internalException(); |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | * @internal |
||
35 | */ |
||
36 | public function urls(): object |
||
37 | { |
||
38 | if ($this->internalFunctionIsCallable) { |
||
39 | return parent::urls(); |
||
40 | } |
||
41 | |||
42 | $this->internalException(); |
||
43 | } |
||
44 | |||
45 | /** |
||
46 | * @internal |
||
47 | */ |
||
48 | public function handleFFMpegQueue(bool $isLastOne = false, bool $standalone = false): void |
||
55 | } |
||
56 | } |
||
57 | } |
||
58 |