Skip to content

Commit

Permalink
Update Event.php - get set description and location added
Browse files Browse the repository at this point in the history
Update Event.php - get set description and location added
  • Loading branch information
jawadabbass authored Feb 8, 2024
1 parent a2f2194 commit 019e5b3
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/Event.php
Original file line number Diff line number Diff line change
Expand Up @@ -302,11 +302,36 @@ protected function setSourceProperty(array $value)
$this->googleEvent->setSource($source);
}

public function getColorId()
{
$this->googleEvent->getColorId();
}

public function setColorId(int $id)
{
$this->googleEvent->setColorId($id);
}

public function getDescription()
{
$this->googleEvent->getDescription();
}

public function setDescription($description)
{
$this->googleEvent->setDescription($description);
}

public function getLocation()
{
$this->googleEvent->getLocation();
}

public function setLocation($location)
{
$this->googleEvent->setLocation($location);
}

protected function getFieldName(string $name): string
{
return [
Expand Down

0 comments on commit 019e5b3

Please sign in to comment.