@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | */ |
83 | 83 | public function avatar(string $email, array $options = [], ?bool $secure = null, bool $validateOptions = false): string |
84 | 84 | { |
85 | - $url = 'avatar/'.$this->createEmailHash($email); |
|
85 | + $url = 'avatar/' . $this->createEmailHash($email); |
|
86 | 86 | |
87 | 87 | $options = array_merge($this->defaults, array_filter($options)); |
88 | 88 | |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | } |
92 | 92 | |
93 | 93 | if (!empty($options)) { |
94 | - $url .= '?'.http_build_query($options); |
|
94 | + $url .= '?' . http_build_query($options); |
|
95 | 95 | } |
96 | 96 | |
97 | 97 | return $this->buildUrl($url, $secure); |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | */ |
111 | 111 | public function vcard(string $email, ?bool $secure = null): string |
112 | 112 | { |
113 | - return $this->profile($email, $secure).'.vcf'; |
|
113 | + return $this->profile($email, $secure) . '.vcf'; |
|
114 | 114 | } |
115 | 115 | |
116 | 116 | /** |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | */ |
119 | 119 | public function qrCode(string $email, ?bool $secure = null): string |
120 | 120 | { |
121 | - return $this->profile($email, $secure).'.qr'; |
|
121 | + return $this->profile($email, $secure) . '.qr'; |
|
122 | 122 | } |
123 | 123 | |
124 | 124 | /** |