Completed
Pull Request — master (#239)
by Luc
04:52
created
src/Label/ReadModels/Roles/Doctrine/SchemaConfigurator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
     {
31 31
         $schema = $schemaManager->createSchema();
32 32
 
33
-        if (!$schema->hasTable((string) $this->labelRolesTableName)) {
33
+        if (!$schema->hasTable((string)$this->labelRolesTableName)) {
34 34
             $labelRolesTable = $schema->createTable(
35 35
                 $this->labelRolesTableName->toNative()
36 36
             );
Please login to merge, or discard this patch.
src/Label/ReadModels/JSON/Repository/Doctrine/DBALReadRepository.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     public function getByUuid(UUID $uuid)
55 55
     {
56 56
         $aliases = $this->getAliases();
57
-        $whereId = SchemaConfigurator::UUID_COLUMN . ' = ?';
57
+        $whereId = SchemaConfigurator::UUID_COLUMN.' = ?';
58 58
 
59 59
         $queryBuilder = $this->createQueryBuilder()->select($aliases)
60 60
             ->from($this->getTableName()->toNative())
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
     public function getByName(StringLiteral $name)
72 72
     {
73 73
         $aliases = $this->getAliases();
74
-        $whereName = SchemaConfigurator::NAME_COLUMN . ' = ?';
74
+        $whereName = SchemaConfigurator::NAME_COLUMN.' = ?';
75 75
 
76 76
         $queryBuilder = $this->createQueryBuilder()->select($aliases)
77 77
             ->from($this->getTableName()->toNative())
@@ -173,15 +173,15 @@  discard block
 block discarded – undo
173 173
     private function createUserLabelsSubQuery(Query $query)
174 174
     {
175 175
         return $this->createQueryBuilder()
176
-            ->select('DISTINCT ' . LabelRolesSchemaConfigurator::LABEL_ID_COLUMN)
176
+            ->select('DISTINCT '.LabelRolesSchemaConfigurator::LABEL_ID_COLUMN)
177 177
             ->from($this->userRolesTableName->toNative(), 'ur')
178 178
             ->innerJoin(
179 179
                 'ur',
180 180
                 $this->labelRolesTableName->toNative(),
181 181
                 'lr',
182
-                'ur.' . PermissionsSchemaConfigurator::ROLE_ID_COLUMN . ' = lr.' . LabelRolesSchemaConfigurator::ROLE_ID_COLUMN
182
+                'ur.'.PermissionsSchemaConfigurator::ROLE_ID_COLUMN.' = lr.'.LabelRolesSchemaConfigurator::ROLE_ID_COLUMN
183 183
             )
184
-            ->where('ur.' . PermissionsSchemaConfigurator::USER_ID_COLUMN . '= :' . PermissionsSchemaConfigurator::USER_ID_COLUMN);
184
+            ->where('ur.'.PermissionsSchemaConfigurator::USER_ID_COLUMN.'= :'.PermissionsSchemaConfigurator::USER_ID_COLUMN);
185 185
     }
186 186
 
187 187
     /**
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
     {
208 208
         return $queryBuilder->expr()->like(
209 209
             SchemaConfigurator::NAME_COLUMN,
210
-            ':' . SchemaConfigurator::NAME_COLUMN
210
+            ':'.SchemaConfigurator::NAME_COLUMN
211 211
         );
212 212
     }
213 213
 
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
      */
218 218
     private function createLikeParameter(Query $query)
219 219
     {
220
-        return '%' . $query->getValue()->toNative() . '%';
220
+        return '%'.$query->getValue()->toNative().'%';
221 221
     }
222 222
 
223 223
     /**
Please login to merge, or discard this patch.
src/Role/ReadModel/Detail/Projector.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
     {
22 22
         $this->saveNewDocument(
23 23
             $roleCreated->getUuid()->toNative(),
24
-            function (\stdClass $json) use ($roleCreated) {
24
+            function(\stdClass $json) use ($roleCreated) {
25 25
                 $json->uuid = $roleCreated->getUuid()->toNative();
26 26
                 $json->name = $roleCreated->getName()->toNative();
27 27
                 $json->permissions = [];
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
         $json->permissions = array_values(
139 139
             array_filter(
140 140
                 $json->permissions,
141
-                function ($item) use ($permissionName) {
141
+                function($item) use ($permissionName) {
142 142
                     return $item !== $permissionName;
143 143
                 }
144 144
             )
Please login to merge, or discard this patch.
src/Role/ReadModel/Constraints/Doctrine/UserConstraintsReadRepository.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -63,34 +63,34 @@
 block discarded – undo
63 63
         $userRolesSubQuery = $this->connection->createQueryBuilder()
64 64
             ->select(PermissionsSchemaConfigurator::ROLE_ID_COLUMN)
65 65
             ->from($this->userRolesTableName->toNative())
66
-            ->where(PermissionsSchemaConfigurator::USER_ID_COLUMN . ' = :userId');
66
+            ->where(PermissionsSchemaConfigurator::USER_ID_COLUMN.' = :userId');
67 67
 
68 68
         $queryBuilder = $this->connection->createQueryBuilder();
69 69
         $userConstraintsQuery = $queryBuilder
70
-            ->select('rs.' . SearchSchemaConfigurator::CONSTRAINT_COLUMN)
70
+            ->select('rs.'.SearchSchemaConfigurator::CONSTRAINT_COLUMN)
71 71
             ->from($this->rolesSearchTableName, 'rs')
72 72
             ->innerJoin(
73 73
                 'rs',
74 74
                 sprintf('(%s)', $userRolesSubQuery->getSQL()),
75 75
                 'ur',
76
-                'rs.' . SearchSchemaConfigurator::UUID_COLUMN . ' = ur.' . PermissionsSchemaConfigurator::ROLE_ID_COLUMN
76
+                'rs.'.SearchSchemaConfigurator::UUID_COLUMN.' = ur.'.PermissionsSchemaConfigurator::ROLE_ID_COLUMN
77 77
             )
78 78
             ->innerJoin(
79 79
                 'rs',
80 80
                 $this->rolePermissionsTableName->toNative(),
81 81
                 'rp',
82
-                'rs.' . SearchSchemaConfigurator::UUID_COLUMN . ' = rp.' . PermissionsSchemaConfigurator::ROLE_ID_COLUMN
82
+                'rs.'.SearchSchemaConfigurator::UUID_COLUMN.' = rp.'.PermissionsSchemaConfigurator::ROLE_ID_COLUMN
83 83
             )
84
-            ->where(PermissionsSchemaConfigurator::PERMISSION_COLUMN . ' = :permission')
84
+            ->where(PermissionsSchemaConfigurator::PERMISSION_COLUMN.' = :permission')
85 85
             ->andWhere($queryBuilder->expr()->isNotNull(
86
-                'rs.' . SearchSchemaConfigurator::CONSTRAINT_COLUMN
86
+                'rs.'.SearchSchemaConfigurator::CONSTRAINT_COLUMN
87 87
             ))
88 88
             ->setParameter('userId', $userId->toNative())
89 89
             ->setParameter('permission', $permission->toNative());
90 90
 
91 91
         $results = $userConstraintsQuery->execute()->fetchAll(\PDO::FETCH_COLUMN);
92 92
 
93
-        return array_map(function ($constraint) {
93
+        return array_map(function($constraint) {
94 94
             return new StringLiteral($constraint);
95 95
         }, $results);
96 96
     }
Please login to merge, or discard this patch.
src/Offer/Commands/AbstractTranslateTitle.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
     }
25 25
 
26 26
     /**
27
-     * @return StringLiteral
27
+     * @return string
28 28
      */
29 29
     public function getTitle()
30 30
     {
Please login to merge, or discard this patch.
src/Offer/Commands/AbstractTranslateDescription.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
     }
25 25
 
26 26
     /**
27
-     * @return StringLiteral
27
+     * @return string
28 28
      */
29 29
     public function getTitle()
30 30
     {
Please login to merge, or discard this patch.
src/EventExport/Notification/DefaultHTMLBodyFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
         EventExportResult $eventExportResult
14 14
     ) {
15 15
         $url = $eventExportResult->getUrl();
16
-        return '<p>Beste, <br /><br />Hierbij vind je de link naar de door jou geëxporteerde documenten uit UiTdatabank: <a href="' . $url . '">' . $url . '</a><br /><br />
16
+        return '<p>Beste, <br /><br />Hierbij vind je de link naar de door jou geëxporteerde documenten uit UiTdatabank: <a href="'.$url.'">'.$url.'</a><br /><br />
17 17
         Mocht je vragen hebben, of meer informatie wensen over onze diensten, kan je terecht bij [email protected].<br /><br />
18 18
         Met vriendelijke groeten,<br />Het UiTdatabank team</p>';
19 19
     }
Please login to merge, or discard this patch.
src/EventExport/Notification/DefaultPlainTextBodyFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
 
15 15
         return 'Beste,
16 16
 
17
-        Hierbij vind je de link naar de door jou geëxporteerde documenten uit UiTdatabank: ' . $eventExportResult->getUrl() . '
17
+        Hierbij vind je de link naar de door jou geëxporteerde documenten uit UiTdatabank: ' . $eventExportResult->getUrl().'
18 18
 
19 19
         Mocht je vragen hebben, of meer informatie wensen over onze diensten, kan je terecht bij [email protected].
20 20
 
Please login to merge, or discard this patch.
src/Offer/ReadModel/JSONLD/OfferLDProjector.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -624,7 +624,7 @@
 block discarded – undo
624 624
     }
625 625
 
626 626
     /**
627
-     * @return callable
627
+     * @return \Closure
628 628
      */
629 629
     private function reject()
630 630
     {
Please login to merge, or discard this patch.
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
 
131 131
             if (preg_match('/^apply(.+)$/', $method, $matches)) {
132 132
                 $event = $matches[1];
133
-                $classNameMethod = 'get' . $event . 'ClassName';
133
+                $classNameMethod = 'get'.$event.'ClassName';
134 134
 
135 135
                 if (method_exists($this, $classNameMethod)) {
136 136
                     $eventFullClassName = call_user_func(array($this, $classNameMethod));
@@ -260,7 +260,7 @@  discard block
 block discarded – undo
260 260
         $labelsProperty = $labelAdded->getLabel()->isVisible() ? 'labels' : 'hiddenLabels';
261 261
 
262 262
         $labels = isset($offerLd->{$labelsProperty}) ? $offerLd->{$labelsProperty} : [];
263
-        $label = (string) $labelAdded->getLabel();
263
+        $label = (string)$labelAdded->getLabel();
264 264
 
265 265
         $labels[] = $label;
266 266
         $offerLd->{$labelsProperty} = array_unique($labels);
@@ -283,7 +283,7 @@  discard block
 block discarded – undo
283 283
         if (isset($offerLd->{$labelsProperty}) && is_array($offerLd->{$labelsProperty})) {
284 284
             $offerLd->{$labelsProperty} = array_filter(
285 285
                 $offerLd->{$labelsProperty},
286
-                function ($label) use ($deleteLabel) {
286
+                function($label) use ($deleteLabel) {
287 287
                     return !$deleteLabel->getLabel()->equals(
288 288
                         new Label($label)
289 289
                     );
@@ -379,7 +379,7 @@  discard block
 block discarded – undo
379 379
             return;
380 380
         }
381 381
 
382
-        $imageId = (string) $imageRemoved->getImage()->getMediaObjectId();
382
+        $imageId = (string)$imageRemoved->getImage()->getMediaObjectId();
383 383
 
384 384
         /**
385 385
          * Matches any object that is not the removed image.
@@ -390,7 +390,7 @@  discard block
 block discarded – undo
390 390
          * @return bool
391 391
          *  Returns true when the media object does not match the image to remove.
392 392
          */
393
-        $shouldNotBeRemoved = function ($mediaObject) use ($imageId) {
393
+        $shouldNotBeRemoved = function($mediaObject) use ($imageId) {
394 394
             $containsId = !!strpos($mediaObject->{'@id'}, $imageId);
395 395
             return !$containsId;
396 396
         };
@@ -428,7 +428,7 @@  discard block
 block discarded – undo
428 428
         $document = $this->loadDocumentFromRepository($mainImageSelected);
429 429
         $offerLd = $document->getBody();
430 430
         $imageId = $mainImageSelected->getImage()->getMediaObjectId();
431
-        $mediaObjectMatcher = function ($matchingMediaObject, $currentMediaObject) use ($imageId) {
431
+        $mediaObjectMatcher = function($matchingMediaObject, $currentMediaObject) use ($imageId) {
432 432
             if (!$matchingMediaObject && $this->mediaObjectMatchesId($currentMediaObject, $imageId)) {
433 433
                 $matchingMediaObject = $currentMediaObject;
434 434
             }
@@ -453,7 +453,7 @@  discard block
 block discarded – undo
453 453
      */
454 454
     protected function mediaObjectMatchesId($mediaObject, UUID $mediaObjectId)
455 455
     {
456
-        return strpos($mediaObject->{'@id'}, (string) $mediaObjectId) > 0;
456
+        return strpos($mediaObject->{'@id'}, (string)$mediaObjectId) > 0;
457 457
     }
458 458
 
459 459
     /**
@@ -634,7 +634,7 @@  discard block
 block discarded – undo
634 634
      */
635 635
     protected function applyPublished(AbstractPublished $published)
636 636
     {
637
-        $this->applyEventTransformation($published, function ($offerLd) use ($published) {
637
+        $this->applyEventTransformation($published, function($offerLd) use ($published) {
638 638
             $offerLd->workflowStatus = WorkflowStatus::READY_FOR_VALIDATION()->getName();
639 639
 
640 640
             $publicationDate = $published->getPublicationDate();
@@ -647,7 +647,7 @@  discard block
 block discarded – undo
647 647
      */
648 648
     protected function applyApproved(AbstractApproved $approved)
649 649
     {
650
-        $this->applyEventTransformation($approved, function ($offerLd) {
650
+        $this->applyEventTransformation($approved, function($offerLd) {
651 651
             $offerLd->workflowStatus = WorkflowStatus::APPROVED()->getName();
652 652
         });
653 653
     }
@@ -683,7 +683,7 @@  discard block
 block discarded – undo
683 683
      */
684 684
     private function reject()
685 685
     {
686
-        return function ($offerLd) {
686
+        return function($offerLd) {
687 687
             $offerLd->workflowStatus = WorkflowStatus::REJECTED()->getName();
688 688
         };
689 689
     }
Please login to merge, or discard this patch.