@@ -54,10 +54,10 @@ discard block |
||
| 54 | 54 | if ($selfClosing) { |
| 55 | 55 | // Find the self-closing tag, including its attributes and optionally a closing slash. |
| 56 | 56 | // .*? means: Get any characters, 0 or more, but non-greedy so stop when the first / or > is encountered. |
| 57 | - $pattern .= '(<' . $tag . '.*?[\\/]?>)'; |
|
| 57 | + $pattern .= '(<'.$tag.'.*?[\\/]?>)'; |
|
| 58 | 58 | } else { |
| 59 | 59 | // Find the closing tag. |
| 60 | - $pattern .= '(<\\/' . $tag . '>)'; |
|
| 60 | + $pattern .= '(<\\/'.$tag.'>)'; |
|
| 61 | 61 | } |
| 62 | 62 | |
| 63 | 63 | // Capture any newlines after the tag as well. |
@@ -73,11 +73,11 @@ discard block |
||
| 73 | 73 | } |
| 74 | 74 | |
| 75 | 75 | // Loop over all matching tags from the string. |
| 76 | - return preg_replace_callback($pattern, function ($match) use ($newlines) { |
|
| 76 | + return preg_replace_callback($pattern, function($match) use ($newlines) { |
|
| 77 | 77 | // Return the tag appended by the specified amount of newlines. Note that $match[0] is the full captured |
| 78 | 78 | // match, so it also includes the newlines after the tag. $match[1] is just the tag itself, and $match[2] |
| 79 | 79 | // are the newlines following it (if any). |
| 80 | - return $match[1] . $newlines; |
|
| 80 | + return $match[1].$newlines; |
|
| 81 | 81 | }, $string); |
| 82 | 82 | } |
| 83 | 83 | |
@@ -96,7 +96,7 @@ discard block |
||
| 96 | 96 | { |
| 97 | 97 | // Pattern that finds any consecutive newlines that exceed the allowed limit. |
| 98 | 98 | $exceeded = $limit + 1; |
| 99 | - $pattern = '/((\\n){' . $exceeded . ',})/'; |
|
| 99 | + $pattern = '/((\\n){'.$exceeded.',})/'; |
|
| 100 | 100 | |
| 101 | 101 | // Create a string with the maximum number of allowed newlines. |
| 102 | 102 | $newlines = ''; |
@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | |
| 24 | 24 | $method = $this->getHandleMethod($command); |
| 25 | 25 | |
| 26 | - if (! method_exists($this, $method)) { |
|
| 26 | + if (!method_exists($this, $method)) { |
|
| 27 | 27 | return; |
| 28 | 28 | } |
| 29 | 29 | |
@@ -40,6 +40,6 @@ discard block |
||
| 40 | 40 | { |
| 41 | 41 | $classParts = explode('\\', get_class($command)); |
| 42 | 42 | |
| 43 | - return 'handle' . end($classParts); |
|
| 43 | + return 'handle'.end($classParts); |
|
| 44 | 44 | } |
| 45 | 45 | } |
@@ -97,7 +97,7 @@ |
||
| 97 | 97 | 'addressLocality' => $address->getCity(), |
| 98 | 98 | 'postalCode' => $address->getZip(), |
| 99 | 99 | 'streetAddress' => |
| 100 | - $address->getStreet() . ' ' . |
|
| 100 | + $address->getStreet().' '. |
|
| 101 | 101 | $address->getHouseNumber(), |
| 102 | 102 | ); |
| 103 | 103 | |
@@ -25,7 +25,7 @@ discard block |
||
| 25 | 25 | { |
| 26 | 26 | if (!is_string($cdbXml)) { |
| 27 | 27 | throw new \InvalidArgumentException( |
| 28 | - 'Expected argument 1 to be a scalar string, received ' . gettype($cdbXml) |
|
| 28 | + 'Expected argument 1 to be a scalar string, received '.gettype($cdbXml) |
|
| 29 | 29 | ); |
| 30 | 30 | } |
| 31 | 31 | $this->cdbXml = $cdbXml; |
@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | { |
| 39 | 39 | if (!is_string($cdbXmlNamespaceUri)) { |
| 40 | 40 | throw new \InvalidArgumentException( |
| 41 | - 'Expected argument 1 to be a scalar string, received ' . gettype($cdbXmlNamespaceUri) |
|
| 41 | + 'Expected argument 1 to be a scalar string, received '.gettype($cdbXmlNamespaceUri) |
|
| 42 | 42 | ); |
| 43 | 43 | } |
| 44 | 44 | $this->cdbXmlNamespaceUri = $cdbXmlNamespaceUri; |
@@ -91,8 +91,8 @@ |
||
| 91 | 91 | $mimeType = MIMEType::fromNative($mimeTypeString); |
| 92 | 92 | |
| 93 | 93 | $fileId = new UUID($this->uuidGenerator->generate()); |
| 94 | - $fileName = $fileId . '.' . $file->guessExtension(); |
|
| 95 | - $destination = $this->getUploadDirectory() . '/' . $fileName; |
|
| 94 | + $fileName = $fileId.'.'.$file->guessExtension(); |
|
| 95 | + $destination = $this->getUploadDirectory().'/'.$fileName; |
|
| 96 | 96 | $stream = fopen($file->getRealPath(), 'r+'); |
| 97 | 97 | $this->filesystem->writeStream($destination, $stream); |
| 98 | 98 | fclose($stream); |
@@ -147,9 +147,9 @@ discard block |
||
| 147 | 147 | { |
| 148 | 148 | $q = $this->connection->createQueryBuilder(); |
| 149 | 149 | $q->select('event') |
| 150 | - ->from($this->tableName) |
|
| 151 | - ->where('place = ?') |
|
| 152 | - ->setParameter(0, $placeId); |
|
| 150 | + ->from($this->tableName) |
|
| 151 | + ->where('place = ?') |
|
| 152 | + ->setParameter(0, $placeId); |
|
| 153 | 153 | |
| 154 | 154 | $results = $q->execute(); |
| 155 | 155 | |
@@ -184,8 +184,8 @@ discard block |
||
| 184 | 184 | { |
| 185 | 185 | $q = $this->connection->createQueryBuilder(); |
| 186 | 186 | $q->delete($this->tableName) |
| 187 | - ->where('event = ?') |
|
| 188 | - ->setParameter(0, $eventId); |
|
| 187 | + ->where('event = ?') |
|
| 188 | + ->setParameter(0, $eventId); |
|
| 189 | 189 | |
| 190 | 190 | $q->execute(); |
| 191 | 191 | } |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | |
| 42 | 42 | public function removeOrganizer($eventId) |
| 43 | 43 | { |
| 44 | - $transaction = function ($connection) use ($eventId) { |
|
| 44 | + $transaction = function($connection) use ($eventId) { |
|
| 45 | 45 | if ($this->eventHasRelations($connection, $eventId)) { |
| 46 | 46 | $this->updateEventRelation($connection, $eventId, 'organizer', null); |
| 47 | 47 | } |
@@ -67,7 +67,7 @@ discard block |
||
| 67 | 67 | */ |
| 68 | 68 | private function storeRelation($eventId, $relationType, $itemId) |
| 69 | 69 | { |
| 70 | - $transaction = function ($connection) use ($eventId, $relationType, $itemId) { |
|
| 70 | + $transaction = function($connection) use ($eventId, $relationType, $itemId) { |
|
| 71 | 71 | if ($this->eventHasRelations($connection, $eventId)) { |
| 72 | 72 | $this->updateEventRelation($connection, $eventId, $relationType, $itemId); |
| 73 | 73 | } else { |
@@ -18,7 +18,7 @@ |
||
| 18 | 18 | { |
| 19 | 19 | if (!is_string($eventId)) { |
| 20 | 20 | throw new \InvalidArgumentException( |
| 21 | - 'Expected eventId to be a string, received ' . gettype($eventId) |
|
| 21 | + 'Expected eventId to be a string, received '.gettype($eventId) |
|
| 22 | 22 | ); |
| 23 | 23 | } |
| 24 | 24 | |
@@ -38,7 +38,7 @@ |
||
| 38 | 38 | } |
| 39 | 39 | |
| 40 | 40 | /** |
| 41 | - * @return mixed The object instance |
|
| 41 | + * @return AbstractContactPointUpdated The object instance |
|
| 42 | 42 | */ |
| 43 | 43 | public static function deserialize(array $data) |
| 44 | 44 | { |
@@ -48,7 +48,7 @@ |
||
| 48 | 48 | public function validateUrl(Url $url) |
| 49 | 49 | { |
| 50 | 50 | $identifier = $this->iriOfferIdentifierFactory->fromIri( |
| 51 | - \ValueObjects\Web\Url::fromNative((string) $url) |
|
| 51 | + \ValueObjects\Web\Url::fromNative((string)$url) |
|
| 52 | 52 | ); |
| 53 | 53 | $offerType = $identifier->getType(); |
| 54 | 54 | $offerId = $identifier->getId(); |