@@ -129,7 +129,7 @@ discard block |
||
129 | 129 | $queryBuilder = $this->createQueryBuilder() |
130 | 130 | ->update($this->getTableName()->toNative()) |
131 | 131 | ->set($column, '?') |
132 | - ->where(SchemaConfigurator::UUID_COLUMN . ' = ?') |
|
132 | + ->where(SchemaConfigurator::UUID_COLUMN.' = ?') |
|
133 | 133 | ->setParameters([ |
134 | 134 | $value ? 1 : 0, |
135 | 135 | $uuid->toNative() |
@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | SchemaConfigurator::COUNT_COLUMN, |
156 | 156 | $newCount < 0 ? 0 : $newCount |
157 | 157 | ) |
158 | - ->where(SchemaConfigurator::UUID_COLUMN . ' = ?') |
|
158 | + ->where(SchemaConfigurator::UUID_COLUMN.' = ?') |
|
159 | 159 | ->setParameters([$uuid->toNative()]); |
160 | 160 | |
161 | 161 | $queryBuilder->execute(); |
@@ -170,7 +170,7 @@ discard block |
||
170 | 170 | $queryBuilder = $this->createQueryBuilder() |
171 | 171 | ->select([SchemaConfigurator::COUNT_COLUMN]) |
172 | 172 | ->from($this->getTableName()->toNative()) |
173 | - ->where(SchemaConfigurator::UUID_COLUMN . ' = ?') |
|
173 | + ->where(SchemaConfigurator::UUID_COLUMN.' = ?') |
|
174 | 174 | ->setParameters([$uuid->toNative()]); |
175 | 175 | |
176 | 176 | $statement = $queryBuilder->execute(); |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | $items = new OfferIdentifierCollection(); |
80 | 80 | $totalItems = $cdbId = $elementName = $offerType = $resultXmlString = null; |
81 | 81 | |
82 | - $resetCurrentResultValues = function () use (&$cdbId, &$elementName, &$offerType, &$resultXmlString) { |
|
82 | + $resetCurrentResultValues = function() use (&$cdbId, &$elementName, &$offerType, &$resultXmlString) { |
|
83 | 83 | $cdbId = null; |
84 | 84 | $elementName = self::CDBXML_TYPE_UNKNOWN; |
85 | 85 | $offerType = self::OFFER_TYPE_UNKNOWN; |
@@ -93,13 +93,13 @@ discard block |
||
93 | 93 | |
94 | 94 | while ($r->read()) { |
95 | 95 | if ($this->xmlNodeIsNumberOfRecordsTag($r)) { |
96 | - $totalItems = new Integer((int) $r->readString()); |
|
96 | + $totalItems = new Integer((int)$r->readString()); |
|
97 | 97 | } |
98 | 98 | |
99 | 99 | if ($this->xmlNodeIsResultOpeningTag($r)) { |
100 | 100 | $resultXmlString = $r->readOuterXml(); |
101 | 101 | $cdbId = $r->getAttribute('cdbid'); |
102 | - $elementName = 'cdbxml.' . $r->localName; |
|
102 | + $elementName = 'cdbxml.'.$r->localName; |
|
103 | 103 | |
104 | 104 | if ($elementName == self::CDBXML_TYPE_EVENT) { |
105 | 105 | $offerType = self::OFFER_TYPE_EVENT; |
@@ -142,7 +142,7 @@ |
||
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) { |
@@ -81,7 +81,7 @@ discard block |
||
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 |
||
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(); |
@@ -12,9 +12,9 @@ |
||
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 | } |
@@ -11,7 +11,7 @@ |
||
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); |
@@ -11,7 +11,7 @@ |
||
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); |
@@ -42,8 +42,8 @@ discard block |
||
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 |
||
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) |
@@ -47,19 +47,19 @@ |
||
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 |