-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathAsset.php
More file actions
110 lines (95 loc) · 1.84 KB
/
Copy pathAsset.php
File metadata and controls
110 lines (95 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<?php
namespace App\Entity;
use DaybreakStudios\Utility\DoctrineEntities\EntityInterface;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity()
* @ORM\Table(
* name="assets",
* uniqueConstraints={
* @ORM\UniqueConstraint(columns={"primary_hash", "secondary_hash"})
* }
* )
*
* Class Asset
*
* @package App\Entity
*/
class Asset implements EntityInterface {
use EntityTrait;
/**
* @ORM\Column(type="text")
*
* @var string
*/
private $uri;
/**
* @ORM\Column(type="string", length=128)
*
* @var string
*/
private $primaryHash;
/**
* @ORM\Column(type="string", length=128)
*
* @var string
*/
private $secondaryHash;
/**
* Asset constructor.
*
* @param string $uri
* @param string $primaryHash
* @param string $secondaryHash
*/
public function __construct(string $uri, string $primaryHash, string $secondaryHash) {
$this->uri = $uri;
$this->primaryHash = $primaryHash;
$this->secondaryHash = $secondaryHash;
}
/**
* @return string
*/
public function getUri(): string {
return $this->uri;
}
/**
* @param string $uri
*
* @return $this
*/
public function setUri($uri) {
$this->uri = $uri;
return $this;
}
/**
* @return string
*/
public function getPrimaryHash(): string {
return $this->primaryHash;
}
/**
* @param string $primaryHash
*
* @return $this
*/
public function setPrimaryHash(string $primaryHash) {
$this->primaryHash = $primaryHash;
return $this;
}
/**
* @return string
*/
public function getSecondaryHash(): string {
return $this->secondaryHash;
}
/**
* @param string $secondaryHash
*
* @return $this
*/
public function setSecondaryHash(string $secondaryHash) {
$this->secondaryHash = $secondaryHash;
return $this;
}
}