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 ( 108f3b...905b81 )
by Telyn
01:45
created
agents/COB/AgentBlock.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -51,8 +51,8 @@  discard block
 block discarded – undo
51 51
     /** As defaults can be made for everything else these are the only non-optional
52 52
      * parts of a COB file in my opinion. Even then they could just be '' if you
53 53
      * really felt like it. 
54
-     * @param $agentName The name of the agent (as displayed in the C2 injector)
55
-     * @param $agentDescription The description of the agent (as displayed in the C2 injector)
54
+     * @param string|false $agentName The name of the agent (as displayed in the C2 injector)
55
+     * @param string $agentDescription The description of the agent (as displayed in the C2 injector)
56 56
      */
57 57
     public function COBAgentBlock($agentName, $agentDescription) {
58 58
         parent::COBBlock(COB_BLOCK_AGENT);
@@ -168,14 +168,14 @@  discard block
 block discarded – undo
168 168
     }
169 169
     /// @brief Sets the install script
170 170
     /**
171
-     * @param $installScript the text of the script to add
171
+     * @param string $installScript the text of the script to add
172 172
      */
173 173
     public function SetInstallScript($installScript) {
174 174
         $this->installScript = $installScript;
175 175
     }
176 176
     /// @brief Sets the remover script
177 177
     /**
178
-     * @param $removeScript The text of the script to add
178
+     * @param string $removeScript The text of the script to add
179 179
      */
180 180
     public function SetRemoveScript($removeScript) {
181 181
         $this->removeScript = $removeScript;
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
     }
201 201
     /// @brief Sets the date this agent will expire
202 202
     /**
203
-     * @param $time The date this agent will expire as a UNIX timestamp
203
+     * @param integer $time The date this agent will expire as a UNIX timestamp
204 204
      */
205 205
     public function SetExpiryDate($time) {
206 206
         $this->expiryDate = $time;
@@ -390,7 +390,7 @@  discard block
 block discarded – undo
390 390
 
391 391
     /// @brief Creates a new COBDependency
392 392
     /** @param string $type The type of dependency ('sprite' or 'sound').
393
-     * @param $name The name of the dependency (four characters, no file extension)
393
+     * @param string $name The name of the dependency (four characters, no file extension)
394 394
      */
395 395
     public function COBDependency($type, $name) {
396 396
         $this->type = $type;
Please login to merge, or discard this patch.
agents/COB/UnknownBlock.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     /** @return string
24 24
      */
25 25
     public function Compile() {
26
-        return $this->GetType() . $this->contents;
26
+        return $this->GetType().$this->contents;
27 27
     }
28 28
 
29 29
     /// @brief Gets the block's contents
Please login to merge, or discard this patch.