@@ -43,7 +43,7 @@ |
||
43 | 43 | $this->spreadsheet->getActiveSheet()->fromArray( |
44 | 44 | $row, |
45 | 45 | '', |
46 | - 'A' . $this->i |
|
46 | + 'A'.$this->i |
|
47 | 47 | ); |
48 | 48 | |
49 | 49 | $this->i++; |
@@ -19,7 +19,7 @@ |
||
19 | 19 | { |
20 | 20 | $this->f = fopen($filePath, 'w'); |
21 | 21 | if (false === $this->f) { |
22 | - throw new \RuntimeException('Unable to open file for writing: ' . $filePath); |
|
22 | + throw new \RuntimeException('Unable to open file for writing: '.$filePath); |
|
23 | 23 | } |
24 | 24 | |
25 | 25 | $this->delimiter = ','; |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | $this->mailMap[$key] = $this->wrapped->byEmail($email); |
52 | 52 | } else { |
53 | 53 | $this->logger->info( |
54 | - 'found user id mapping of ' . $email->toNative() . ' in cache' |
|
54 | + 'found user id mapping of '.$email->toNative().' in cache' |
|
55 | 55 | ); |
56 | 56 | } |
57 | 57 | |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | $this->nickMap[$key] = $this->wrapped->byNick($nick); |
69 | 69 | } else { |
70 | 70 | $this->logger->info( |
71 | - 'found user id mapping of ' . $nick->toNative() . ' in cache' |
|
71 | + 'found user id mapping of '.$nick->toNative().' in cache' |
|
72 | 72 | ); |
73 | 73 | } |
74 | 74 |
@@ -44,7 +44,7 @@ |
||
44 | 44 | |
45 | 45 | if (!$userId) { |
46 | 46 | $this->logger->warning( |
47 | - 'Unable to find user with identifier ' . $createdByIdentifier |
|
47 | + 'Unable to find user with identifier '.$createdByIdentifier |
|
48 | 48 | ); |
49 | 49 | } |
50 | 50 | } catch (Exception $e) { |
@@ -98,7 +98,7 @@ |
||
98 | 98 | ) { |
99 | 99 | if (!is_string($eventId)) { |
100 | 100 | throw new \InvalidArgumentException( |
101 | - 'Expected eventId to be a string, received ' . gettype($eventId) |
|
101 | + 'Expected eventId to be a string, received '.gettype($eventId) |
|
102 | 102 | ); |
103 | 103 | } |
104 | 104 |
@@ -98,7 +98,7 @@ |
||
98 | 98 | public function applyOrganizerImportedFromUDB2( |
99 | 99 | OrganizerImportedFromUDB2 $organizerImported |
100 | 100 | ) { |
101 | - $this->actorId = (string) $organizerImported->getActorId(); |
|
101 | + $this->actorId = (string)$organizerImported->getActorId(); |
|
102 | 102 | } |
103 | 103 | |
104 | 104 | /** |
@@ -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(); |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | public function jsonSerialize() |
67 | 67 | { |
68 | 68 | return [ |
69 | - '@id' => (string) $this->iri, |
|
69 | + '@id' => (string)$this->iri, |
|
70 | 70 | '@type' => $this->type->toNative(), |
71 | 71 | ]; |
72 | 72 | } |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | { |
79 | 79 | return json_encode( |
80 | 80 | [ |
81 | - 'iri' => (string) $this->iri, |
|
81 | + 'iri' => (string)$this->iri, |
|
82 | 82 | 'id' => $this->id, |
83 | 83 | 'type' => $this->type->toNative(), |
84 | 84 | ] |
@@ -39,12 +39,12 @@ discard block |
||
39 | 39 | public function addLabel(IriOfferIdentifier $identifier, Label $label) |
40 | 40 | { |
41 | 41 | $uri = $this->createUri( |
42 | - (string) $identifier->getIri(), |
|
42 | + (string)$identifier->getIri(), |
|
43 | 43 | 'labels' |
44 | 44 | ); |
45 | 45 | |
46 | 46 | $data = [ |
47 | - 'label' => (string) $label, |
|
47 | + 'label' => (string)$label, |
|
48 | 48 | ]; |
49 | 49 | |
50 | 50 | $request = $this->createJsonPostRequest($uri, $data); |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | private function createUri($iri, $path) |
60 | 60 | { |
61 | 61 | return $this->psr7Factory->createUri( |
62 | - rtrim($iri, '/') . '/' . $path |
|
62 | + rtrim($iri, '/').'/'.$path |
|
63 | 63 | ); |
64 | 64 | } |
65 | 65 |