| Total Complexity | 2 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | trait UrlGeneratorTrait |
||
| 21 | { |
||
| 22 | use EncrypterTrait; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var string |
||
| 26 | */ |
||
| 27 | public $action = '/site/file'; |
||
| 28 | |||
| 29 | public function publicUrl(string $path, array $config = []): string |
||
| 38 | } |
||
| 39 | |||
| 40 | public function temporaryUrl(string $path, DateTimeInterface $expiresAt, array $config = []): string |
||
| 51 |