GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Branch master (3967e1)
by Hong
04:13
created
src/Phossa2/Event/Interfaces/ListenerAwareTrait.php 1 patch
Doc Comments   -3 removed lines patch added patch discarded remove patch
@@ -90,7 +90,6 @@  discard block
 block discarded – undo
90 90
     /**
91 91
      * standardize events definition
92 92
      *
93
-     * @param  array $eventsDefinition
94 93
      * @return array
95 94
      * @access protected
96 95
      */
@@ -112,8 +111,6 @@  discard block
 block discarded – undo
112 111
     /**
113 112
      * standardize to array of 'method1' or ['method1', 20]
114 113
      *
115
-     * @param  ListenerInterface $listener
116
-     * @param  string $eventName
117 114
      * @param  mixed $data
118 115
      * @return array
119 116
      * @access protected
Please login to merge, or discard this patch.
src/Phossa2/Event/EventDispatcher.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
         /*# int */ $priority = 50
93 93
     ) {
94 94
         // wrap the callable
95
-        $wrapper = function (EventInterface $event) use ($callable, $times) {
95
+        $wrapper = function(EventInterface $event) use ($callable, $times) {
96 96
             static $cnt = 0;
97 97
             if ($cnt++ < $times) {
98 98
                 call_user_func($callable, $event);
Please login to merge, or discard this patch.