Remove space from end of line

This commit is contained in:
Dennis Eichhorn 2018-02-03 11:52:30 +01:00
parent 024f551e68
commit 75183a188f
2 changed files with 11 additions and 11 deletions

View File

@ -48,7 +48,7 @@ class Employee {
private $status = []; private $status = [];
public function setAccount(Account $account) public function setAccount(Account $account)
{ {
$this->account = $account; $this->account = $account;
} }
@ -57,7 +57,7 @@ class Employee {
return $this->account; return $this->account;
} }
public function setActivity(bool $active) public function setActivity(bool $active)
{ {
$this->isActive = $active; $this->isActive = $active;
} }
@ -67,32 +67,32 @@ class Employee {
return $this->isActive; return $this->isActive;
} }
public function setUnit($unit) public function setUnit($unit)
{ {
$this->unit = $unit; $this->unit = $unit;
} }
public function getUnit() public function getUnit()
{ {
return $this->unit; return $this->unit;
} }
public function setDepartment($department) public function setDepartment($department)
{ {
$this->department = $department; $this->department = $department;
} }
public function getDepartment() public function getDepartment()
{ {
return $this->department; return $this->department;
} }
public function setPosition($position) public function setPosition($position)
{ {
$this->position = $position; $this->position = $position;
} }
public function getPosition() public function getPosition()
{ {
return $this->position; return $this->position;
} }
@ -107,8 +107,8 @@ class Employee {
return []; return [];
} }
public function getNewestHistory() public function getNewestHistory()
{ {
} }
} }

View File

@ -14,5 +14,5 @@
* @var \phpOMS\Views\View $this * @var \phpOMS\Views\View $this
*/ */
echo $this->getData('nav')->render(); echo $this->getData('nav')->render();