Skip to content

Commit

Permalink
getCreatedAt getUpdatedAt method
Browse files Browse the repository at this point in the history
  • Loading branch information
fogelito committed Sep 5, 2024
1 parent eccd83f commit fd0950e
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/Migration/Resource.php
Original file line number Diff line number Diff line change
Expand Up @@ -171,4 +171,20 @@ public function setPermissions(array $permissions): self

return $this;
}

/**
* @returns string
*/
public function getCreatedAt(): string
{
return $this->createdAt;
}

/**
* @returns string
*/
public function getUpdatedAt(): string
{
return $this->updatedAt;
}
}

0 comments on commit fd0950e

Please sign in to comment.