@@ -1,10 +1,10 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * YAWIK |
|
| 4 | - * |
|
| 5 | - * @copyright (c) 2013 - 2016 Cross Solution (http://cross-solution.de) |
|
| 6 | - * @license MIT |
|
| 7 | - */ |
|
| 3 | + * YAWIK |
|
| 4 | + * |
|
| 5 | + * @copyright (c) 2013 - 2016 Cross Solution (http://cross-solution.de) |
|
| 6 | + * @license MIT |
|
| 7 | + */ |
|
| 8 | 8 | |
| 9 | 9 | namespace Auth\Entity; |
| 10 | 10 | |
@@ -25,7 +25,7 @@ discard block |
||
| 25 | 25 | |
| 26 | 26 | /** |
| 27 | 27 | * @param bool $recursive |
| 28 | - * @param array $skipMembers |
|
| 28 | + * @param string[] $skipMembers |
|
| 29 | 29 | * |
| 30 | 30 | * @return $this |
| 31 | 31 | */ |
@@ -130,7 +130,7 @@ discard block |
||
| 130 | 130 | } |
| 131 | 131 | |
| 132 | 132 | /** |
| 133 | - * @param $property |
|
| 133 | + * @param string $property |
|
| 134 | 134 | * |
| 135 | 135 | * @return null |
| 136 | 136 | */ |
@@ -562,7 +562,7 @@ discard block |
||
| 562 | 562 | * @param string $role |
| 563 | 563 | * @return ArrayCollection |
| 564 | 564 | */ |
| 565 | - public function getEmployeesByRole($role){ |
|
| 565 | + public function getEmployeesByRole($role) { |
|
| 566 | 566 | $employees = new ArrayCollection(); |
| 567 | 567 | |
| 568 | 568 | /* @var \Organizations\Entity\Employee $employee */ |
@@ -680,7 +680,7 @@ discard block |
||
| 680 | 680 | */ |
| 681 | 681 | public function getTemplate() |
| 682 | 682 | { |
| 683 | - if (null === $this->template){ |
|
| 683 | + if (null === $this->template) { |
|
| 684 | 684 | $this->template = new Template(); |
| 685 | 685 | } |
| 686 | 686 | return $this->template; |
@@ -134,7 +134,7 @@ |
||
| 134 | 134 | * @param $role |
| 135 | 135 | */ |
| 136 | 136 | public function setRole($role) { |
| 137 | - $this->role=$role; |
|
| 137 | + $this->role = $role; |
|
| 138 | 138 | } |
| 139 | 139 | |
| 140 | 140 | /** |