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.
Completed
Push — master ( 5265cb...c87b3e )
by Tomasz
02:12
created
src/ShortcodeFacade.php 1 patch
Doc Comments   +23 added lines patch added patch discarded remove patch
@@ -76,11 +76,17 @@  discard block
 block discarded – undo
76 76
         $this->processor = $this->processor->withEventContainer($this->events);
77 77
     }
78 78
 
79
+    /**
80
+     * @param string $text
81
+     */
79 82
     public function process($text)
80 83
     {
81 84
         return $this->processor->process($text);
82 85
     }
83 86
 
87
+    /**
88
+     * @param string $text
89
+     */
84 90
     public function parse($text)
85 91
     {
86 92
         return $this->parser->parse($text);
@@ -94,6 +100,10 @@  discard block
 block discarded – undo
94 100
         return $this;
95 101
     }
96 102
 
103
+    /**
104
+     * @param string $name
105
+     * @param \Closure $handler
106
+     */
97 107
     public function addHandler($name, $handler)
98 108
     {
99 109
         $this->handlers->add($name, $handler);
@@ -101,11 +111,18 @@  discard block
 block discarded – undo
101 111
         return $this;
102 112
     }
103 113
 
114
+    /**
115
+     * @param string $alias
116
+     * @param string $name
117
+     */
104 118
     public function addHandlerAlias($alias, $name)
105 119
     {
106 120
         $this->handlers->addAlias($alias, $name);
107 121
     }
108 122
 
123
+    /**
124
+     * @param EventHandler\FilterRawEventHandler $handler
125
+     */
109 126
     public function addEventHandler($name, $handler)
110 127
     {
111 128
         $this->events->addListener($name, $handler);
@@ -113,6 +130,9 @@  discard block
 block discarded – undo
113 130
         return $this;
114 131
     }
115 132
 
133
+    /**
134
+     * @param string $format
135
+     */
116 136
     public function serialize(ShortcodeInterface $shortcode, $format)
117 137
     {
118 138
         switch($format) {
@@ -124,6 +144,9 @@  discard block
 block discarded – undo
124 144
         }
125 145
     }
126 146
 
147
+    /**
148
+     * @param string $format
149
+     */
127 150
     public function unserialize($text, $format)
128 151
     {
129 152
         switch($format) {
Please login to merge, or discard this patch.