23 lines
407 B
PHP
23 lines
407 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace adrienpayet\notifications\location;
|
||
|
|
|
||
|
|
class FileDetails
|
||
|
|
{
|
||
|
|
public string $uuid;
|
||
|
|
public string $url;
|
||
|
|
|
||
|
|
public function __construct(array $data)
|
||
|
|
{
|
||
|
|
$this->uuid = (string) $data->uuid();
|
||
|
|
$this->url = (string) $data->url();
|
||
|
|
}
|
||
|
|
|
||
|
|
public function toArray() {
|
||
|
|
return [
|
||
|
|
"uuid" => $this->uuid,
|
||
|
|
"url" => $this->url
|
||
|
|
];
|
||
|
|
}
|
||
|
|
}
|