The expression return $this returns the type POData\ObjectModel\ODataContainerBase which includes types incompatible with the type-hinted return POData\ObjectModel\ODataEntry.
Loading history...
112
}
113
/**
114
* @return string|null
115
*/
116
public function getUpdated(): ?string
117
{
118
return $this->updated;
119
}
120
121
/**
122
* @param string|null $updated
123
* @return ODataEntry
124
*/
125
public function setUpdated(?string $updated): self
126
{
127
$this->updated = $updated;
128
return $this;
129
}
130
131
/**
132
* @return string|null
133
*/
134
public function getBaseURI(): ?string
135
{
136
return $this->baseURI;
137
}
138
139
/**
140
* @param string|null $baseURI
141
* @return self
142
*/
143
public function setBaseURI(?string $baseURI): self