php cs fixer

This commit is contained in:
Dennis Eichhorn 2018-12-28 19:13:17 +01:00
parent 3408e1c243
commit a2ebadb3a7
2 changed files with 7 additions and 7 deletions

View File

@ -111,7 +111,7 @@ class Calendar
* *
* @since 1.0.0 * @since 1.0.0
*/ */
public function setName(string $name) public function setName(string $name) : void
{ {
$this->name = $name; $this->name = $name;
} }
@ -225,7 +225,7 @@ class Calendar
* *
* @since 1.0.0 * @since 1.0.0
*/ */
public function setDate(\DateTime $date) public function setDate(\DateTime $date) : void
{ {
$this->date = $date; $this->date = $date;
} }

View File

@ -218,7 +218,7 @@ class Event
* *
* @since 1.0.0 * @since 1.0.0
*/ */
public function setName(string $name) public function setName(string $name) : void
{ {
$this->name = $name; $this->name = $name;
} }
@ -238,7 +238,7 @@ class Event
* *
* @since 1.0.0 * @since 1.0.0
*/ */
public function setDescription(string $desc) public function setDescription(string $desc) : void
{ {
$this->description = $desc; $this->description = $desc;
} }
@ -268,7 +268,7 @@ class Event
* *
* @since 1.0.0 * @since 1.0.0
*/ */
public function setCreatedBy(int $createdBy) public function setCreatedBy(int $createdBy) : void
{ {
$this->createdBy = $createdBy; $this->createdBy = $createdBy;
$this->schedule->setCreatedBy($this->createdBy); $this->schedule->setCreatedBy($this->createdBy);
@ -279,7 +279,7 @@ class Event
* *
* @since 1.0.0 * @since 1.0.0
*/ */
public function setLocation(Location $location) public function setLocation(Location $location) : void
{ {
$this->location = $location; $this->location = $location;
} }
@ -329,7 +329,7 @@ class Event
* *
* @since 1.0.0 * @since 1.0.0
*/ */
public function setCalendar(int $calendar) public function setCalendar(int $calendar) : void
{ {
$this->calendar = $calendar; $this->calendar = $calendar;
} }