Completed
Branch master (68427a)
by PROSPER
05:47
created
src/Emoji.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 
15 15
     /**
16 16
      * Get the Quotes from the respective files depending on the Category
17
-     * @param  string $category
18 17
      * @return array
19 18
      */
20 19
     private function getEmojis()
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.