Passed
Pull Request — master (#631)
by ANTHONIUS
08:16
created
test/OrganizationsTest/Repository/Filter/PaginationQueryTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
         $builder->expects($this->any())
79 79
             ->method('field')
80 80
             ->willReturnMap([
81
-                ['permissions.view',$builder]
81
+                ['permissions.view', $builder]
82 82
             ])
83 83
         ;
84 84
 
Please login to merge, or discard this patch.
test/OrganizationsTest/ImageFileCache/ApplicationListenerTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
 
84 84
         $this->fileManager = $this->createMock(FileManager::class);
85 85
 
86
-        $this->listener = new ApplicationListener($this->cacheManager,$this->fileManager);
86
+        $this->listener = new ApplicationListener($this->cacheManager, $this->fileManager);
87 87
     }
88 88
 
89 89
     /**
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
     {
167 167
         $baseUrl = '/base';
168 168
         $path = '/some/uri';
169
-        $uri = $baseUrl . $path;
169
+        $uri = $baseUrl.$path;
170 170
         $this->event->setError(Application::ERROR_ROUTER_NO_MATCH);
171 171
 
172 172
         $this->request->expects($this->once())
Please login to merge, or discard this patch.
module/Organizations/test/OrganizationsTest/ImageFileCache/ManagerTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
     {
202 202
         $id = 'someId';
203 203
         $ext = 'ext';
204
-        $name = 'filename.' . $ext;
204
+        $name = 'filename.'.$ext;
205 205
         $path = sprintf('d/I/%s.%s', $id, $ext);
206 206
         $resource = 'someResource';
207 207
 
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
      */
239 239
     public function testMatchUri($uri, $expected)
240 240
     {
241
-        $this->assertSame($expected, $this->manager->matchUri($this->options->getUriPath() . $uri));
241
+        $this->assertSame($expected, $this->manager->matchUri($this->options->getUriPath().$uri));
242 242
     }
243 243
 
244 244
     /**
Please login to merge, or discard this patch.
module/Organizations/src/Service/UploadHandler.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -77,12 +77,12 @@  discard block
 block discarded – undo
77 77
         $imageSetID = $organization->getImages()->getId();
78 78
         $images = $imageSet->createImages($options->getImages(), $data);
79 79
 
80
-        if(!is_dir($tmpDir)){
80
+        if (!is_dir($tmpDir)) {
81 81
             mkdir($tmpDir, 0777, true);
82 82
         }
83 83
 
84
-        foreach($images as $key => $image){
85
-            $name = $key.'-'. $data['name'];
84
+        foreach ($images as $key => $image) {
85
+            $name = $key.'-'.$data['name'];
86 86
             $format = str_replace('image/', '', $data['type']);
87 87
             $content = $image->get($format);
88 88
             $tmpFile = $tmpDir.DIRECTORY_SEPARATOR.md5($image->get($format));
@@ -93,12 +93,12 @@  discard block
 block discarded – undo
93 93
             $metadata->setOrganization($organization);
94 94
             $metadata->setKey($key);
95 95
             $metadata->setContentType($data['type']);
96
-            if(!is_null($user)){
96
+            if (!is_null($user)) {
97 97
                 $metadata->setUser($user);
98 98
             }
99 99
 
100 100
             /* @var ImageInterface $file */
101
-            $file = $fileManager->uploadFromFile($options->getEntityClass(),$metadata, $tmpFile, $name);
101
+            $file = $fileManager->uploadFromFile($options->getEntityClass(), $metadata, $tmpFile, $name);
102 102
             $organization->getImages()->add($file);
103 103
         }
104 104
 
Please login to merge, or discard this patch.
module/Organizations/src/Controller/IndexController.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
         try {
144 144
             /* @var $handler \Organizations\Controller\Plugin\GetOrganizationHandler */
145 145
             $handler = $this->plugin('Organizations/GetOrganizationHandler');
146
-            $org  = $handler->process($this->params(), true);
146
+            $org = $handler->process($this->params(), true);
147 147
         } catch (MissingParentOrganizationException $e) {
148 148
             return $this->getErrorViewModel('no-parent');
149 149
         } catch (NotFoundException $e) {
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
             ];
155 155
         }
156 156
 
157
-        $container       = $this->getFormular($org);
157
+        $container = $this->getFormular($org);
158 158
 
159 159
         if (isset($formIdentifier) && $request->isPost()) {
160 160
             /* @var $form \Laminas\Form\FormInterface */
@@ -180,10 +180,10 @@  discard block
 block discarded – undo
180 180
             $form = $container->get($formIdentifier);
181 181
             $form->setData(array_merge($postData, $filesData));
182 182
             if (!isset($form)) {
183
-                throw new \RuntimeException('No form found for "' . $formIdentifier . '"');
183
+                throw new \RuntimeException('No form found for "'.$formIdentifier.'"');
184 184
             }
185 185
 
186
-            if('organizationLogo' == $formIdentifier){
186
+            if ('organizationLogo' == $formIdentifier) {
187 187
                 return $this->handleLogoUpload($form, $filesData);
188 188
             }
189 189
 
Please login to merge, or discard this patch.
module/Organizations/src/Entity/Organization.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -49,17 +49,17 @@  discard block
 block discarded – undo
49 49
     /**
50 50
      * Always enabled even if there are no active jobs
51 51
      */
52
-    const PROFILE_ALWAYS_ENABLE     = 'always';
52
+    const PROFILE_ALWAYS_ENABLE = 'always';
53 53
 
54 54
     /**
55 55
      * Hide if there are no jobs available
56 56
      */
57
-    const PROFILE_ACTIVE_JOBS       = 'active-jobs';
57
+    const PROFILE_ACTIVE_JOBS = 'active-jobs';
58 58
 
59 59
     /**
60 60
      * Always disabled profile
61 61
      */
62
-    const PROFILE_DISABLED          = 'disabled';
62
+    const PROFILE_DISABLED = 'disabled';
63 63
 
64 64
     /**
65 65
      * Event name of post construct event.
@@ -317,7 +317,7 @@  discard block
 block discarded – undo
317 317
      */
318 318
     public function getParent($returnSelf = false)
319 319
     {
320
-        return $this->parent ? : ($returnSelf ? $this : null);
320
+        return $this->parent ?: ($returnSelf ? $this : null);
321 321
     }
322 322
 
323 323
     /**
@@ -548,7 +548,7 @@  discard block
 block discarded – undo
548 548
      */
549 549
     public function getPermissionsResourceId()
550 550
     {
551
-        return 'organization:' . $this->getId();
551
+        return 'organization:'.$this->getId();
552 552
     }
553 553
 
554 554
     /**
@@ -614,7 +614,7 @@  discard block
 block discarded – undo
614 614
      */
615 615
     public function getImages(): ?ImageSetInterface
616 616
     {
617
-        if(is_null($this->images)){
617
+        if (is_null($this->images)) {
618 618
             $this->images = new ImageSet();
619 619
         }
620 620
         return $this->images;
Please login to merge, or discard this patch.
module/Organizations/src/Entity/OrganizationImage.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -32,9 +32,9 @@
 block discarded – undo
32 32
 
33 33
     public function getUri(): string
34 34
     {
35
-        $id = (string)$this->id;
36
-        $name = (string)$this->name;
37
-        return '/'.trim('file/Organizations.OrganizationImage/' . $id . "/" . urlencode($name), '/');
35
+        $id = (string) $this->id;
36
+        $name = (string) $this->name;
37
+        return '/'.trim('file/Organizations.OrganizationImage/'.$id."/".urlencode($name), '/');
38 38
     }
39 39
 
40 40
 }
41 41
\ No newline at end of file
Please login to merge, or discard this patch.
module/Organizations/src/Repository/Organization.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
      * @param bool          $persist
201 201
      * @return \Organizations\Entity\Organization
202 202
      */
203
-    public function create(array $data = null, $persist=false)
203
+    public function create(array $data = null, $persist = false)
204 204
     {
205 205
         $entity = parent::create($data);
206 206
         $entity->isDraft(true);
@@ -268,7 +268,7 @@  discard block
 block discarded – undo
268 268
             $qb->limit($limit);
269 269
         }
270 270
 
271
-        if($execute){
271
+        if ($execute) {
272 272
             return $qb->getQuery()->execute();
273 273
         }
274 274
         return $qb;
Please login to merge, or discard this patch.
module/Organizations/src/ImageFileCache/Manager.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
      */
45 45
     public function getUri(?OrganizationImage $image)
46 46
     {
47
-        if(is_null($image)){
47
+        if (is_null($image)) {
48 48
             return null;
49 49
         }
50 50
         if ($this->options->getEnabled()) {
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
      */
94 94
     public function matchUri($uri)
95 95
     {
96
-        $pattern = '#^' . preg_quote($this->options->getUriPath(), '#') . '/[0-9a-z]/[0-9a-z]/([0-9a-z]+)\.[a-zA-Z]{3,4}$#';
96
+        $pattern = '#^'.preg_quote($this->options->getUriPath(), '#').'/[0-9a-z]/[0-9a-z]/([0-9a-z]+)\.[a-zA-Z]{3,4}$#';
97 97
         $matches = [];
98 98
         preg_match($pattern, $uri, $matches);
99 99
 
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
     {
151 151
         $dir = rtrim($dir, '/\\');
152 152
 
153
-        if (! is_dir($dir)) {
153
+        if (!is_dir($dir)) {
154 154
             $this->createDirectoryRecursively(dirname($dir));
155 155
 
156 156
             $oldUmask = umask(0);
Please login to merge, or discard this patch.