Completed
Push — master ( babb5a...72bb00 )
by Jonas
15s queued 11s
created
src/Offer/BulkLabelCommandHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 block discarded – undo
91 91
             $this->externalOfferEditingService->addLabel($offerIdentifier, $label);
92 92
         } catch (\Exception $e) {
93 93
             $logContext = [
94
-                'iri' => (string) $offerIdentifier->getIri(),
94
+                'iri' => (string)$offerIdentifier->getIri(),
95 95
                 'command' => $originalCommandName,
96 96
                 'exception' => get_class($e),
97 97
                 'message' => $e->getMessage(),
Please login to merge, or discard this patch.
src/Offer/Events/AbstractLabelEvent.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
 
46 46
     /**
47 47
      * @param array $data
48
-     * @return mixed The object instance
48
+     * @return AbstractLabelEvent The object instance
49 49
      */
50 50
     public static function deserialize(array $data)
51 51
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     public function serialize()
39 39
     {
40 40
         return parent::serialize() + array(
41
-            'label' => (string) $this->label,
41
+            'label' => (string)$this->label,
42 42
             'visibility' => $this->label->isVisible(),
43 43
         );
44 44
     }
Please login to merge, or discard this patch.
src/EventSourcing/DBAL/UniqueConstraintException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
      */
12 12
     public function __construct($uuid, $unique)
13 13
     {
14
-        $message = 'Not unique: uuid = ' . $uuid . ', unique value = ' . $unique;
14
+        $message = 'Not unique: uuid = '.$uuid.', unique value = '.$unique;
15 15
         parent::__construct($message);
16 16
     }
17 17
 }
Please login to merge, or discard this patch.
src/Label/ReadModels/JSON/Repository/SimilaritySorter.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
      */
14 14
     public function sort(array &$entities, StringLiteral $value)
15 15
     {
16
-        return usort($entities, function ($entity1, $entity2) use ($value) {
16
+        return usort($entities, function($entity1, $entity2) use ($value) {
17 17
             /** @var Entity $entity1 */
18 18
             $weight1 = $this->getWeight($entity1, $value);
19 19
 
Please login to merge, or discard this patch.
src/Label/ReadModels/JSON/Projector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@
 block discarded – undo
142 142
     {
143 143
         $uuid = null;
144 144
 
145
-        $name = new StringLiteral((string) $labelEvent->getLabel());
145
+        $name = new StringLiteral((string)$labelEvent->getLabel());
146 146
 
147 147
         $entity = $this->readRepository->getByName($name);
148 148
         if ($entity !== null) {
Please login to merge, or discard this patch.
src/Role/ReadModel/Search/Doctrine/DBALRepository.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
 
82 82
         if (!empty($query)) {
83 83
             $q->where($expr->like('name', ':role_name'));
84
-            $q->setParameter('role_name', '%' . $query . '%');
84
+            $q->setParameter('role_name', '%'.$query.'%');
85 85
         }
86 86
 
87 87
         $results = $q->execute()->fetchAll(\PDO::FETCH_ASSOC);
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
 
97 97
         if (!empty($query)) {
98 98
             $q->where($expr->like('name', ':role_name'));
99
-            $q->setParameter('role_name', '%' . $query . '%');
99
+            $q->setParameter('role_name', '%'.$query.'%');
100 100
         }
101 101
 
102 102
         $total = $q->execute()->fetchColumn();
Please login to merge, or discard this patch.
src/StringFilter/NewlineToBreakTagStringFilter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
     public function filter($string)
12 12
     {
13 13
         if (!is_string($string)) {
14
-            throw new \InvalidArgumentException('Argument should be string, got ' . gettype($string) . ' instead.');
14
+            throw new \InvalidArgumentException('Argument should be string, got '.gettype($string).' instead.');
15 15
         }
16 16
 
17 17
         // nl2br() only appends <br /> after each \n but does not remove the \n
Please login to merge, or discard this patch.
src/Role/ReadModel/Permissions/Doctrine/SchemaConfigurator.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -42,8 +42,8 @@  discard block
 block discarded – undo
42 42
     {
43 43
         $schema = $schemaManager->createSchema();
44 44
 
45
-        if (!$schema->hasTable((string) $this->userRoleTableName)) {
46
-            $userRoleTable = $schema->createTable((string) $this->userRoleTableName);
45
+        if (!$schema->hasTable((string)$this->userRoleTableName)) {
46
+            $userRoleTable = $schema->createTable((string)$this->userRoleTableName);
47 47
 
48 48
             $userRoleTable->addColumn(self::USER_ID_COLUMN, Type::GUID)
49 49
                 ->setLength(36)
@@ -59,8 +59,8 @@  discard block
 block discarded – undo
59 59
             $schemaManager->createTable($userRoleTable);
60 60
         }
61 61
 
62
-        if (!$schema->hasTable((string) $this->rolePermissionTableName)) {
63
-            $rolePermissionTable = $schema->createTable((string) $this->rolePermissionTableName);
62
+        if (!$schema->hasTable((string)$this->rolePermissionTableName)) {
63
+            $rolePermissionTable = $schema->createTable((string)$this->rolePermissionTableName);
64 64
 
65 65
             $rolePermissionTable->addColumn(self::ROLE_ID_COLUMN, Type::GUID)
66 66
                 ->setLength(36)
Please login to merge, or discard this patch.
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.