@@ -24,7 +24,7 @@ |
||
| 24 | 24 | public function getHydrator() |
| 25 | 25 | { |
| 26 | 26 | if (!$this->hydrator) { |
| 27 | - $hydrator = new EntityHydrator(); |
|
| 27 | + $hydrator = new EntityHydrator(); |
|
| 28 | 28 | $this->setHydrator($hydrator); |
| 29 | 29 | } |
| 30 | 30 | return $this->hydrator; |
@@ -28,7 +28,7 @@ |
||
| 28 | 28 | * |
| 29 | 29 | * @var string |
| 30 | 30 | */ |
| 31 | - protected $options="Jobs/Options"; |
|
| 31 | + protected $options = "Jobs/Options"; |
|
| 32 | 32 | |
| 33 | 33 | /** |
| 34 | 34 | * Configure the Form width Options |
@@ -24,7 +24,7 @@ |
||
| 24 | 24 | public function getHydrator() |
| 25 | 25 | { |
| 26 | 26 | if (!$this->hydrator) { |
| 27 | - $hydrator = new EntityHydrator(); |
|
| 27 | + $hydrator = new EntityHydrator(); |
|
| 28 | 28 | $this->setHydrator($hydrator); |
| 29 | 29 | } |
| 30 | 30 | return $this->hydrator; |
@@ -46,13 +46,13 @@ discard block |
||
| 46 | 46 | |
| 47 | 47 | /* todo: WRITE own Hydrator strategy class */ |
| 48 | 48 | $strategy = new ClosureStrategy( |
| 49 | - function ($object) use ($users) { |
|
| 49 | + function($object) use ($users) { |
|
| 50 | 50 | if (is_string($object)) { |
| 51 | 51 | return $users->find($object); |
| 52 | 52 | } |
| 53 | 53 | return $object; |
| 54 | 54 | }, |
| 55 | - function ($data) use ($users) { |
|
| 55 | + function($data) use ($users) { |
|
| 56 | 56 | if (is_string($data)) { |
| 57 | 57 | $data = $users->find($data); |
| 58 | 58 | } |
@@ -63,7 +63,7 @@ discard block |
||
| 63 | 63 | /* todo: write own strategy class */ |
| 64 | 64 | $permStrategy = new ClosureStrategy( |
| 65 | 65 | // extract |
| 66 | - function ($object) { |
|
| 66 | + function($object) { |
|
| 67 | 67 | /* @var $object \Organizations\Entity\EmployeePermissionsInterface */ |
| 68 | 68 | $values = array(); |
| 69 | 69 | foreach (array( |
@@ -77,10 +77,10 @@ discard block |
||
| 77 | 77 | |
| 78 | 78 | return $values; |
| 79 | 79 | }, |
| 80 | - function ($data) { |
|
| 80 | + function($data) { |
|
| 81 | 81 | $permissions = array_reduce( |
| 82 | 82 | $data, |
| 83 | - function ($c, $i) { |
|
| 83 | + function($c, $i) { |
|
| 84 | 84 | return $c | $i; |
| 85 | 85 | }, |
| 86 | 86 | 0 |
@@ -35,7 +35,7 @@ |
||
| 35 | 35 | { |
| 36 | 36 | if (!$value instanceof Job) { |
| 37 | 37 | } |
| 38 | - $reciptients=[]; |
|
| 38 | + $reciptients = []; |
|
| 39 | 39 | |
| 40 | 40 | return $reciptients; |
| 41 | 41 | } |
@@ -195,7 +195,7 @@ |
||
| 195 | 195 | return $this->proxy('__isset', $property); |
| 196 | 196 | } |
| 197 | 197 | |
| 198 | - public function notEmpty($property, array $args=[]) |
|
| 198 | + public function notEmpty($property, array $args = []) |
|
| 199 | 199 | { |
| 200 | 200 | return $this->proxy('notEmpty', $args); |
| 201 | 201 | } |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | |
| 114 | 114 | public function setStatus($status) |
| 115 | 115 | { |
| 116 | - if (!defined('self::STATUS_' . strtoupper($status))) { |
|
| 116 | + if (!defined('self::STATUS_'.strtoupper($status))) { |
|
| 117 | 117 | $status = self::STATUS_ASSIGNED; |
| 118 | 118 | } |
| 119 | 119 | |
@@ -135,7 +135,7 @@ discard block |
||
| 135 | 135 | */ |
| 136 | 136 | public function setRole($role) |
| 137 | 137 | { |
| 138 | - $this->role=$role; |
|
| 138 | + $this->role = $role; |
|
| 139 | 139 | } |
| 140 | 140 | |
| 141 | 141 | /** |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | */ |
| 87 | 87 | public function setHouseNumber($houseNumber = "") |
| 88 | 88 | { |
| 89 | - $this->houseNumber=$houseNumber; |
|
| 89 | + $this->houseNumber = $houseNumber; |
|
| 90 | 90 | return $this; |
| 91 | 91 | } |
| 92 | 92 | |
@@ -152,7 +152,7 @@ discard block |
||
| 152 | 152 | */ |
| 153 | 153 | public function setStreet($street = "") |
| 154 | 154 | { |
| 155 | - $this->street=$street; |
|
| 155 | + $this->street = $street; |
|
| 156 | 156 | return $this; |
| 157 | 157 | } |
| 158 | 158 | |
@@ -174,7 +174,7 @@ discard block |
||
| 174 | 174 | */ |
| 175 | 175 | public function setCountry($country = "") |
| 176 | 176 | { |
| 177 | - $this->country=$country; |
|
| 177 | + $this->country = $country; |
|
| 178 | 178 | return $this; |
| 179 | 179 | } |
| 180 | 180 | |
@@ -199,7 +199,7 @@ discard block |
||
| 199 | 199 | */ |
| 200 | 200 | public function setPhone($phone = "") |
| 201 | 201 | { |
| 202 | - $this->phone=$phone; |
|
| 202 | + $this->phone = $phone; |
|
| 203 | 203 | return $this; |
| 204 | 204 | } |
| 205 | 205 | |
@@ -222,7 +222,7 @@ discard block |
||
| 222 | 222 | */ |
| 223 | 223 | public function setFax($fax = "") |
| 224 | 224 | { |
| 225 | - $this->fax=$fax; |
|
| 225 | + $this->fax = $fax; |
|
| 226 | 226 | return $this; |
| 227 | 227 | } |
| 228 | 228 | |
@@ -27,13 +27,13 @@ |
||
| 27 | 27 | * |
| 28 | 28 | * @var int |
| 29 | 29 | */ |
| 30 | - const JOBS_VIEW = 16; // 10000 |
|
| 31 | - const JOBS_CREATE = 24; // 11000 # Create w/o View makes no sense |
|
| 32 | - const JOBS_CHANGE = 20; // 10100 # Change w/o view makes no sense |
|
| 33 | - const APPLICATIONS_VIEW = 2; // 00010 |
|
| 34 | - const APPLICATIONS_CHANGE = 3; // 00011 # change w/o view makes no sense |
|
| 35 | - const ALL = 31; // 11111 |
|
| 36 | - const NONE = 0; // 00000 |
|
| 30 | + const JOBS_VIEW = 16; // 10000 |
|
| 31 | + const JOBS_CREATE = 24; // 11000 # Create w/o View makes no sense |
|
| 32 | + const JOBS_CHANGE = 20; // 10100 # Change w/o view makes no sense |
|
| 33 | + const APPLICATIONS_VIEW = 2; // 00010 |
|
| 34 | + const APPLICATIONS_CHANGE = 3; // 00011 # change w/o view makes no sense |
|
| 35 | + const ALL = 31; // 11111 |
|
| 36 | + const NONE = 0; // 00000 |
|
| 37 | 37 | /**#@- */ |
| 38 | 38 | |
| 39 | 39 | /** |