@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | |
31 | 31 | $emoji = strtolower($emojiName); |
32 | 32 | |
33 | - if (! array_key_exists($emoji, $this->getEmojis())) { |
|
33 | + if (!array_key_exists($emoji, $this->getEmojis())) { |
|
34 | 34 | throw UnknownEmoji::create($emoji); |
35 | 35 | } |
36 | 36 | |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | |
51 | 51 | $emojis = array_flip($this->getEmojis()); |
52 | 52 | |
53 | - if (! array_key_exists($unicode, $emojis)) { |
|
53 | + if (!array_key_exists($unicode, $emojis)) { |
|
54 | 54 | throw UnknownUnicode::create($unicode); |
55 | 55 | } |
56 | 56 | |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | |
60 | 60 | public function __call($method, $parameters) |
61 | 61 | { |
62 | - if (! method_exists(new static, $method)) { |
|
62 | + if (!method_exists(new static, $method)) { |
|
63 | 63 | throw UnknownMethod::create($method); |
64 | 64 | } |
65 | 65 | } |