Skip to content

Commit e5f3363

Browse files
committed
add phpdocs to Database getters
1 parent 31aa939 commit e5f3363

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

src/Entities/Database.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,31 +266,49 @@ public function getCoverType(): string
266266
return $this->coverType;
267267
}
268268

269+
/**
270+
* @return Collection
271+
*/
269272
public function getProperties(): Collection
270273
{
271274
return $this->properties;
272275
}
273276

277+
/**
278+
* @return array
279+
*/
274280
public function getRawTitle(): array
275281
{
276282
return $this->rawTitle;
277283
}
278284

285+
/**
286+
* @return array
287+
*/
279288
public function getRawProperties(): array
280289
{
281290
return $this->rawProperties;
282291
}
283292

293+
/**
294+
* @return array
295+
*/
284296
public function getPropertyKeys(): array
285297
{
286298
return $this->propertyKeys;
287299
}
288300

301+
/**
302+
* @return DateTime
303+
*/
289304
public function getCreatedTime(): DateTime
290305
{
291306
return $this->createdTime;
292307
}
293308

309+
/**
310+
* @return array
311+
*/
294312
public function getLastEditedTime(): DateTime
295313
{
296314
return $this->lastEditedTime;

0 commit comments

Comments
 (0)