Make getters public,

Add Test
This commit is contained in:
Patrick Henninger
2020-05-08 20:58:58 +02:00
parent a50767d584
commit 05b99d4e72
2 changed files with 37 additions and 2 deletions

View File

@@ -890,7 +890,7 @@ class Cart
*
* @return \Carbon\Carbon|null
*/
private function createdAt()
public function createdAt()
{
return $this->createdAt;
}
@@ -900,7 +900,7 @@ class Cart
*
* @return \Carbon\Carbon|null
*/
private function updatedAt()
public function updatedAt()
{
return $this->createdAt;
}