@@ -48,7 +48,7 @@ discard block |
||
| 48 | 48 | */ |
| 49 | 49 | public function getSubscribedEvents() |
| 50 | 50 | { |
| 51 | - if (! $this->manager->isEnabled()) { |
|
| 51 | + if (!$this->manager->isEnabled()) { |
|
| 52 | 52 | return []; |
| 53 | 53 | } |
| 54 | 54 | |
@@ -66,19 +66,19 @@ discard block |
||
| 66 | 66 | $organization = $eventArgs->getDocument(); |
| 67 | 67 | |
| 68 | 68 | // check for a organization instance |
| 69 | - if (! $organization instanceof Organization) { |
|
| 69 | + if (!$organization instanceof Organization) { |
|
| 70 | 70 | return; |
| 71 | 71 | } |
| 72 | 72 | |
| 73 | 73 | // check if the image has been changed |
| 74 | - if (! $eventArgs->hasChangedField('image')) { |
|
| 74 | + if (!$eventArgs->hasChangedField('image')) { |
|
| 75 | 75 | return; |
| 76 | 76 | } |
| 77 | 77 | |
| 78 | 78 | $image = $eventArgs->getOldValue('image'); |
| 79 | 79 | |
| 80 | 80 | // check if any image existed |
| 81 | - if (! $image instanceof OrganizationImage) { |
|
| 81 | + if (!$image instanceof OrganizationImage) { |
|
| 82 | 82 | return; |
| 83 | 83 | } |
| 84 | 84 | |
@@ -66,7 +66,7 @@ |
||
| 66 | 66 | // try get image from repository |
| 67 | 67 | $image = $this->repository->find($id); |
| 68 | 68 | |
| 69 | - if (! $image) { |
|
| 69 | + if (!$image) { |
|
| 70 | 70 | // abort if image does not exist |
| 71 | 71 | return; |
| 72 | 72 | } |
@@ -127,7 +127,7 @@ |
||
| 127 | 127 | |
| 128 | 128 | public function process($token, $organizationId) |
| 129 | 129 | { |
| 130 | - $organizationRepository = $this->getOrganizationRepository(); |
|
| 130 | + $organizationRepository = $this->getOrganizationRepository(); |
|
| 131 | 131 | $organization = $organizationRepository->find($organizationId); /* @var $organization \Organizations\Entity\OrganizationInterface */ |
| 132 | 132 | |
| 133 | 133 | if (!$organization) { |
@@ -47,9 +47,9 @@ discard block |
||
| 47 | 47 | |
| 48 | 48 | public function __construct(RepositoryService $repositoryService, AuthenticationService $auth, Acl $acl) |
| 49 | 49 | { |
| 50 | - $this->repositoryService=$repositoryService; |
|
| 51 | - $this->auth=$auth; |
|
| 52 | - $this->acl=$acl; |
|
| 50 | + $this->repositoryService = $repositoryService; |
|
| 51 | + $this->auth = $auth; |
|
| 52 | + $this->acl = $acl; |
|
| 53 | 53 | } |
| 54 | 54 | |
| 55 | 55 | public function __invoke() |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | */ |
| 69 | 69 | public function process(Params $params, $allowDraft = true) |
| 70 | 70 | { |
| 71 | - $repositories = $this->repositoryService; |
|
| 71 | + $repositories = $this->repositoryService; |
|
| 72 | 72 | /* @var \Organizations\Repository\Organization $organizationRepository */ |
| 73 | 73 | $organizationRepository = $this->repositoryService->get('Organizations/Organization'); |
| 74 | 74 | |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | $user = $this->auth->getUser(); /* @var $user \Auth\Entity\UserInterface */ |
| 78 | 78 | |
| 79 | 79 | /* @var $organizationId string */ |
| 80 | - $organizationId = empty($idFromRoute)?$idFromSubForm:$idFromRoute; |
|
| 80 | + $organizationId = empty($idFromRoute) ? $idFromSubForm : $idFromRoute; |
|
| 81 | 81 | |
| 82 | 82 | $editOwnOrganization = '__my__' === $organizationId; |
| 83 | 83 | |
@@ -111,7 +111,7 @@ discard block |
||
| 111 | 111 | return $organization; |
| 112 | 112 | } |
| 113 | 113 | |
| 114 | - $organization = $organizationRepository->find($organizationId); |
|
| 114 | + $organization = $organizationRepository->find($organizationId); |
|
| 115 | 115 | if (!$organization) { |
| 116 | 116 | throw new NotFoundException($organizationId); |
| 117 | 117 | } |
@@ -23,7 +23,7 @@ |
||
| 23 | 23 | { |
| 24 | 24 | public function getConfig() |
| 25 | 25 | { |
| 26 | - return include __DIR__ . '/../config/module.config.php'; |
|
| 26 | + return include __DIR__.'/../config/module.config.php'; |
|
| 27 | 27 | } |
| 28 | 28 | |
| 29 | 29 | |
@@ -92,9 +92,9 @@ discard block |
||
| 92 | 92 | |
| 93 | 93 | // Create a file with the class/file map. |
| 94 | 94 | // Stupid syntax highlighters make separating < from PHP declaration necessary |
| 95 | - $content = '<' . "?php\n" |
|
| 95 | + $content = '<'."?php\n" |
|
| 96 | 96 | . "\n" |
| 97 | - . 'return ' . var_export($config, true) . ';'; |
|
| 97 | + . 'return '.var_export($config, true).';'; |
|
| 98 | 98 | |
| 99 | 99 | // Fix \' strings from injected DIRECTORY_SEPARATOR usage in iterator_apply op |
| 100 | 100 | $content = str_replace("\\'", "'", $content); |
@@ -107,7 +107,7 @@ discard block |
||
| 107 | 107 | $content = str_replace('array (', 'array(', $content); |
| 108 | 108 | |
| 109 | 109 | // Make the file end by EOL |
| 110 | - $content = rtrim($content, "\n") . "\n"; |
|
| 110 | + $content = rtrim($content, "\n")."\n"; |
|
| 111 | 111 | |
| 112 | 112 | var_export($config, true); |
| 113 | 113 | |
@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | */ |
| 24 | 24 | class BaseFieldsetOptions extends FieldsetCustomizationOptions |
| 25 | 25 | { |
| 26 | - const TITLE = 'title'; |
|
| 26 | + const TITLE = 'title'; |
|
| 27 | 27 | const LOCATION = 'geoLocation'; |
| 28 | 28 | |
| 29 | 29 | /** |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | * |
| 32 | 32 | * @var array |
| 33 | 33 | */ |
| 34 | - protected $fields=[ |
|
| 34 | + protected $fields = [ |
|
| 35 | 35 | self::TITLE => [ |
| 36 | 36 | 'enabled' => true, |
| 37 | 37 | 'options' => [ |
@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | * |
| 29 | 29 | * @var array |
| 30 | 30 | */ |
| 31 | - protected $fields=[ |
|
| 31 | + protected $fields = [ |
|
| 32 | 32 | 'q' => [ |
| 33 | 33 | 'enabled' => true |
| 34 | 34 | ], |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | */ |
| 69 | 69 | public function setPerPage($perPage) |
| 70 | 70 | { |
| 71 | - $this->perPage=$perPage; |
|
| 71 | + $this->perPage = $perPage; |
|
| 72 | 72 | return $this; |
| 73 | 73 | } |
| 74 | 74 | } |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | * |
| 82 | 82 | * @var int $publishDuration |
| 83 | 83 | */ |
| 84 | - protected $publishDuration=30; |
|
| 84 | + protected $publishDuration = 30; |
|
| 85 | 85 | |
| 86 | 86 | /** |
| 87 | 87 | * Category for this channel |
@@ -140,7 +140,7 @@ discard block |
||
| 140 | 140 | */ |
| 141 | 141 | public function setKey($key) |
| 142 | 142 | { |
| 143 | - $this->key=$key; |
|
| 143 | + $this->key = $key; |
|
| 144 | 144 | return $this; |
| 145 | 145 | } |
| 146 | 146 | |
@@ -162,7 +162,7 @@ discard block |
||
| 162 | 162 | */ |
| 163 | 163 | public function setExternalkey($key) |
| 164 | 164 | { |
| 165 | - $this->externalkey=$key; |
|
| 165 | + $this->externalkey = $key; |
|
| 166 | 166 | return $this; |
| 167 | 167 | } |
| 168 | 168 | |