@@ -40,8 +40,8 @@ |
||
| 40 | 40 | |
| 41 | 41 | $plugin = new AcceptInvitationHandler(); |
| 42 | 42 | $plugin->setUserRepository($userRepository) |
| 43 | - ->setOrganizationRepository($organizationRepository) |
|
| 44 | - ->setAuthenticationService($authenticationService); |
|
| 43 | + ->setOrganizationRepository($organizationRepository) |
|
| 44 | + ->setAuthenticationService($authenticationService); |
|
| 45 | 45 | |
| 46 | 46 | return $plugin; |
| 47 | 47 | } |
@@ -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 | } |
@@ -47,17 +47,17 @@ discard block |
||
| 47 | 47 | /** |
| 48 | 48 | * Always enabled even if there are no active jobs |
| 49 | 49 | */ |
| 50 | - const PROFILE_ALWAYS_ENABLE = 'always'; |
|
| 50 | + const PROFILE_ALWAYS_ENABLE = 'always'; |
|
| 51 | 51 | |
| 52 | 52 | /** |
| 53 | 53 | * Hide if there are no jobs available |
| 54 | 54 | */ |
| 55 | - const PROFILE_ACTIVE_JOBS = 'active-jobs'; |
|
| 55 | + const PROFILE_ACTIVE_JOBS = 'active-jobs'; |
|
| 56 | 56 | |
| 57 | 57 | /** |
| 58 | 58 | * Always disabled profile |
| 59 | 59 | */ |
| 60 | - const PROFILE_DISABLED = 'disabled'; |
|
| 60 | + const PROFILE_DISABLED = 'disabled'; |
|
| 61 | 61 | |
| 62 | 62 | /** |
| 63 | 63 | * Event name of post construct event. |
@@ -285,7 +285,7 @@ discard block |
||
| 285 | 285 | */ |
| 286 | 286 | public function getParent($returnSelf = false) |
| 287 | 287 | { |
| 288 | - return $this->parent ? : ($returnSelf ? $this : null); |
|
| 288 | + return $this->parent ?: ($returnSelf ? $this : null); |
|
| 289 | 289 | } |
| 290 | 290 | |
| 291 | 291 | /** |
@@ -516,7 +516,7 @@ discard block |
||
| 516 | 516 | */ |
| 517 | 517 | public function getPermissionsResourceId() |
| 518 | 518 | { |
| 519 | - return 'organization:' . $this->getId(); |
|
| 519 | + return 'organization:'.$this->getId(); |
|
| 520 | 520 | } |
| 521 | 521 | |
| 522 | 522 | /** |
@@ -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 | /** |
@@ -49,7 +49,7 @@ |
||
| 49 | 49 | */ |
| 50 | 50 | public function getUri() |
| 51 | 51 | { |
| 52 | - return '/' . trim('file/Organizations.OrganizationImage/' . $this->id . "/" . urlencode($this->name), '/'); |
|
| 52 | + return '/'.trim('file/Organizations.OrganizationImage/'.$this->id."/".urlencode($this->name), '/'); |
|
| 53 | 53 | } |
| 54 | 54 | |
| 55 | 55 | /** |
@@ -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 | |
@@ -118,11 +118,11 @@ |
||
| 118 | 118 | |
| 119 | 119 | |
| 120 | 120 | /** |
| 121 | - * Sets the name of the organization |
|
| 122 | - * |
|
| 123 | - * @param OrganizationName organizationName |
|
| 124 | - * @return OrganizationInterface |
|
| 125 | - */ |
|
| 121 | + * Sets the name of the organization |
|
| 122 | + * |
|
| 123 | + * @param OrganizationName organizationName |
|
| 124 | + * @return OrganizationInterface |
|
| 125 | + */ |
|
| 126 | 126 | public function setOrganizationName(OrganizationName $organizationNames); |
| 127 | 127 | |
| 128 | 128 | /** |
@@ -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 | /** |