Completed
Pull Request — master (#281)
by Kristof
04:25
created
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/Address/DefaultAddressFormatter.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
      */
13 13
     public function format(Address $address)
14 14
     {
15
-        return $address->getStreetAddress() . ', ' .
16
-            $address->getPostalCode() . ' ' .
17
-            $address->getLocality() . ', ' .
15
+        return $address->getStreetAddress().', '.
16
+            $address->getPostalCode().' '.
17
+            $address->getLocality().', '.
18 18
             $address->getCountry();
19 19
     }
20 20
 }
Please login to merge, or discard this patch.
src/StringFilter/NewlineToSpaceStringFilter.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
         return preg_replace("/(\\n)+/", " ", $string);
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
         return preg_replace("/(\\n)+/", " ", $string);
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/Role/ReadModel/Permissions/Doctrine/UserPermissionsReadRepository.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -47,19 +47,19 @@
 block discarded – undo
47 47
     {
48 48
         $userRoleQuery = $this->connection->createQueryBuilder()
49 49
             ->select(SchemaConfigurator::ROLE_ID_COLUMN)
50
-            ->from((string) $this->userRoleTableName)
51
-            ->where(SchemaConfigurator::USER_ID_COLUMN . ' = :userId');
50
+            ->from((string)$this->userRoleTableName)
51
+            ->where(SchemaConfigurator::USER_ID_COLUMN.' = :userId');
52 52
 
53 53
         $userPermissionQuery = $this->connection->createQueryBuilder()
54
-            ->select('DISTINCT ' . SchemaConfigurator::PERMISSION_COLUMN)
54
+            ->select('DISTINCT '.SchemaConfigurator::PERMISSION_COLUMN)
55 55
             ->from($this->rolePermissionTableName, 'rp')
56 56
             ->leftJoin(
57 57
                 'rp',
58 58
                 sprintf('(%s)', $userRoleQuery->getSQL()),
59 59
                 'up',
60
-                'rp.' . SchemaConfigurator::ROLE_ID_COLUMN .' = up.' . SchemaConfigurator::ROLE_ID_COLUMN
60
+                'rp.'.SchemaConfigurator::ROLE_ID_COLUMN.' = up.'.SchemaConfigurator::ROLE_ID_COLUMN
61 61
             )
62
-            ->setParameter('userId', (string) $userId);
62
+            ->setParameter('userId', (string)$userId);
63 63
 
64 64
         $results = $userPermissionQuery->execute()->fetchAll(\PDO::FETCH_COLUMN);
65 65
 
Please login to merge, or discard this patch.
src/Role/ReadModel/Permissions/Doctrine/UserPermissionsWriteRepository.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -76,8 +76,8 @@  discard block
 block discarded – undo
76 76
         $this->connection->insert(
77 77
             $this->rolePermissionTableName,
78 78
             array(
79
-                SchemaConfigurator::ROLE_ID_COLUMN => (string) $roleId,
80
-                SchemaConfigurator::PERMISSION_COLUMN => (string) $permission
79
+                SchemaConfigurator::ROLE_ID_COLUMN => (string)$roleId,
80
+                SchemaConfigurator::PERMISSION_COLUMN => (string)$permission
81 81
             )
82 82
         );
83 83
     }
@@ -90,8 +90,8 @@  discard block
 block discarded – undo
90 90
         $this->connection->delete(
91 91
             $this->rolePermissionTableName,
92 92
             array(
93
-                SchemaConfigurator::ROLE_ID_COLUMN => (string) $roleId,
94
-                SchemaConfigurator::PERMISSION_COLUMN => (string) $permission
93
+                SchemaConfigurator::ROLE_ID_COLUMN => (string)$roleId,
94
+                SchemaConfigurator::PERMISSION_COLUMN => (string)$permission
95 95
             )
96 96
         );
97 97
     }
@@ -104,8 +104,8 @@  discard block
 block discarded – undo
104 104
         $this->connection->insert(
105 105
             $this->userRoleTableName,
106 106
             array(
107
-                SchemaConfigurator::ROLE_ID_COLUMN => (string) $roleId,
108
-                SchemaConfigurator::USER_ID_COLUMN => (string) $userId
107
+                SchemaConfigurator::ROLE_ID_COLUMN => (string)$roleId,
108
+                SchemaConfigurator::USER_ID_COLUMN => (string)$userId
109 109
             )
110 110
         );
111 111
     }
@@ -118,8 +118,8 @@  discard block
 block discarded – undo
118 118
         $this->connection->delete(
119 119
             $this->userRoleTableName,
120 120
             array(
121
-                SchemaConfigurator::USER_ID_COLUMN => (string) $userId,
122
-                SchemaConfigurator::ROLE_ID_COLUMN => (string) $roleId
121
+                SchemaConfigurator::USER_ID_COLUMN => (string)$userId,
122
+                SchemaConfigurator::ROLE_ID_COLUMN => (string)$roleId
123 123
             )
124 124
         );
125 125
     }
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.
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.