Completed
Push — master ( 9b71f8...6739e0 )
by Iman
01:31
created
src/SpyClasses/SpyDispatcher.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -38,6 +38,9 @@  discard block
 block discarded – undo
38 38
         return $this->originalListeners[$event] ?? [];
39 39
     }
40 40
 
41
+    /**
42
+     * @param string $string
43
+     */
41 44
     private function error($string)
42 45
     {
43 46
         app(ErrorPrinter::class)->pended[] = $string;
@@ -72,6 +75,9 @@  discard block
 block discarded – undo
72 75
         }
73 76
     }
74 77
 
78
+    /**
79
+     * @return string
80
+     */
75 81
     private function stringify($event)
76 82
     {
77 83
         return is_object($event) ? get_class($event) : $event;
@@ -93,6 +99,9 @@  discard block
 block discarded – undo
93 99
         return 'The method of '.$at.' is not callable as an event listener for "'.$e.'" event';
94 100
     }
95 101
 
102
+    /**
103
+     * @return string
104
+     */
96 105
     protected function getTypeHintedClass($listenerObj, $methodName)
97 106
     {
98 107
         try {
Please login to merge, or discard this patch.