1 | <?php |
||
19 | abstract class SnakObject implements Snak { |
||
20 | |||
21 | /** |
||
22 | * @since 0.1 |
||
23 | * |
||
24 | * @var PropertyId |
||
25 | */ |
||
26 | protected $propertyId; |
||
27 | |||
28 | /** |
||
29 | * Support for passing in an EntityId instance that is not a PropertyId instance has |
||
30 | * been deprecated since 0.5. |
||
31 | * |
||
32 | * @since 0.1 |
||
33 | * |
||
34 | * @param PropertyId|EntityId|int $propertyId |
||
35 | * |
||
36 | * @throws InvalidArgumentException |
||
37 | */ |
||
38 | public function __construct( $propertyId ) { |
||
39 | if ( is_int( $propertyId ) ) { |
||
40 | $propertyId = PropertyId::newFromNumber( $propertyId ); |
||
41 | } |
||
42 | |||
43 | if ( !( $propertyId instanceof EntityId ) ) { |
||
44 | throw new InvalidArgumentException( '$propertyId must be an instance of EntityId' ); |
||
45 | } |
||
46 | |||
47 | 40 | if ( $propertyId->getEntityType() !== Property::ENTITY_TYPE ) { |
|
48 | 40 | throw new InvalidArgumentException( '$propertyId must have an entityType of ' . Property::ENTITY_TYPE ); |
|
49 | 4 | } |
|
50 | 4 | ||
51 | if ( !( $propertyId instanceof PropertyId ) ) { |
||
52 | 40 | $propertyId = new PropertyId( $propertyId->getSerialization() ); |
|
53 | 9 | } |
|
54 | |||
55 | $this->propertyId = $propertyId; |
||
56 | 31 | } |
|
57 | 3 | ||
58 | /** |
||
59 | * @see PropertyIdProvider::getPropertyId |
||
60 | 28 | * |
|
61 | * @since 0.1 |
||
62 | * |
||
63 | * @return PropertyId |
||
64 | 28 | */ |
|
65 | 28 | public function getPropertyId() { |
|
68 | |||
69 | /** |
||
70 | * @see Hashable::getHash |
||
71 | * |
||
72 | * @return string |
||
73 | */ |
||
74 | 3 | public function getHash() { |
|
77 | |||
78 | /** |
||
79 | * @see Comparable::equals |
||
80 | * |
||
81 | * @since 0.3 |
||
82 | * |
||
83 | 16 | * @param mixed $target |
|
84 | 16 | * |
|
85 | * @return bool |
||
86 | */ |
||
87 | public function equals( $target ) { |
||
96 | 12 | ||
97 | 12 | /** |
|
98 | * @see Serializable::serialize |
||
99 | * |
||
100 | * @since 0.1 |
||
101 | 12 | * |
|
102 | 12 | * @return string |
|
103 | 12 | */ |
|
104 | public function serialize() { |
||
107 | |||
108 | /** |
||
109 | * @see Serializable::unserialize |
||
110 | * |
||
111 | * @since 0.1 |
||
112 | * |
||
113 | 12 | * @param string $serialized |
|
114 | 12 | */ |
|
115 | public function unserialize( $serialized ) { |
||
118 | |||
119 | /** |
||
120 | * @param string $serialized |
||
121 | * |
||
122 | * @return PropertyId |
||
123 | */ |
||
124 | 2 | protected static function newPropertyId( $serialized ) { |
|
145 | |||
146 | } |
||
147 |