1 | <?php |
||
11 | class File |
||
12 | { |
||
13 | /** |
||
14 | * @var integer |
||
15 | * |
||
16 | * @ORM\Column(name="id", type="integer") |
||
17 | * @ORM\Id |
||
18 | * @ORM\GeneratedValue(strategy="AUTO") |
||
19 | */ |
||
20 | private $id; |
||
21 | |||
22 | /** |
||
23 | * @var string |
||
24 | * |
||
25 | * @ORM\Column(name="remote_url", type="text", unique=true) |
||
26 | */ |
||
27 | private $remoteUrl; |
||
28 | |||
29 | |||
30 | public function __construct($remoteUrl) |
||
34 | |||
35 | public function getId(): int |
||
39 | |||
40 | public function getRemoteUrl(): string |
||
44 | } |
||
45 |