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/PRAY/LIVEBlock.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      * If $prayfile is not null, all the data for this block
16 16
      * will be read from the PRAYFile.
17 17
      * @param PRAYFile $prayfile The PRAYFile this LIVEBlock belongs to.
18
-     * @param $name The name of this block
18
+     * @param string $name The name of this block
19 19
      * @param $content The binary data of this file block.
20 20
      * @param $flags The block's flags. See PrayBlock.
21 21
      */
Please login to merge, or discard this patch.
agents/PRAY/PrayBlock.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -287,10 +287,10 @@
 block discarded – undo
287 287
 
288 288
     /// @brief Creates PrayBlock objects of the correct type.
289 289
     /** For developer use. Called by 
290
-     *   @param $blocktype   The type of PRAYBlock, as one of the Block Types defines.
290
+     *   @param string|false $blocktype   The type of PRAYBlock, as one of the Block Types defines.
291 291
      *   @param $prayfile    The PRAYFile object that the PRAYBlock is a child of. This is used to allow blocks to access to each other.
292 292
      *   @param string $name        The name of the PRAYBlock
293
-     *   @param $content     The binary content of the PRAYBlock, uncompressed if necessary.
293
+     *   @param string|false $content     The binary content of the PRAYBlock, uncompressed if necessary.
294 294
      *   @param $flags       The flags given to this PRAYBlock as an integer.
295 295
      *   return An object that is an instance of a subclass of PrayBlock.
296 296
      */
Please login to merge, or discard this patch.
agents/PRAY/TagBlock.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 
22 22
     /// @brief Creates a new TagBlock
23 23
     /** This should be called by all subclasses from their constructors.
24
-     * @param $prayfile The prayfile this block is contained in, or for TagBlocks being created from scratch, the initial tags array. Can be null.
24
+     * @param PRAYFile $prayfile The prayfile this block is contained in, or for TagBlocks being created from scratch, the initial tags array. Can be null.
25 25
      * @param $name The name of the block. Cannot be null.
26 26
      * @param $content The binary data this block contains. Can be null.
27 27
      * @param $flags The flags relating to this block. Should be zero or real flags.
Please login to merge, or discard this patch.
sprites/SpriteFrame.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@
 block discarded – undo
133 133
      * they use names longer than 3 characters, you will need to 
134 134
      * override this function in your class to provide extra magic.
135 135
      * @endinternal
136
-     * @param $type The type of SpriteFrame to convert this to.
136
+     * @param string $type The type of SpriteFrame to convert this to.
137 137
      */
138 138
     public function ToSpriteFrame($type) {
139 139
         $this->EnsureDecoded();
Please login to merge, or discard this patch.
agents/COB/FileBlock.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,8 +17,8 @@
 block discarded – undo
17 17
     /// @brief Constructs a new COBFileBlock
18 18
     /**
19 19
      * @param string $type The file type
20
-     * @param $name The file name (including extension)
21
-     * @param $contents The contents of the file
20
+     * @param string $name The file name (including extension)
21
+     * @param string|false $contents The contents of the file
22 22
      */
23 23
     public function COBFileBlock($type, $name, $contents) {
24 24
         parent::COBBlock(COB_BLOCK_FILE);
Please login to merge, or discard this patch.
agents/COB/UnknownBlock.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,8 +12,8 @@
 block discarded – undo
12 12
 
13 13
     /// @brief Creates a new COBUnknown block with the given type and contents
14 14
     /**
15
-     * @param $type The four-character type of the block
16
-     * @param $contents The contents of the block
15
+     * @param string $type The four-character type of the block
16
+     * @param string $contents The contents of the block
17 17
      */
18 18
     public function COBUnknownBlock($type, $contents) {
19 19
         parent::COBBlock($type);
Please login to merge, or discard this 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.
agents/PRAY/DFAMBlock.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      * If $prayfile is not null, all the data for this block
14 14
      * will be read from the PRAYFile.
15 15
      * @param PRAYFile $prayfile The PRAYFile that this DFAM block belongs to.
16
-     * @param $name The block's name.
16
+     * @param string $name The block's name.
17 17
      * @param $content The binary data of this block. May be null.
18 18
      * @param $flags The block's flags
19 19
      */
Please login to merge, or discard this patch.
agents/PRAY/EXPCBlock.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      * If $prayfile is not null, all the data for this block
14 14
      * will be read from the PRAYFile.
15 15
      * @param PRAYFile $prayfile The PRAYFile that this DFAM block belongs to.
16
-     * @param $name The block's name.
16
+     * @param string $name The block's name.
17 17
      * @param $content The binary data of this block. May be null.
18 18
      * @param $flags The block's flags
19 19
      */
Please login to merge, or discard this patch.
agents/PRAY/PHOTBlock.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      * If $prayfile is not null, all the data for this block
13 13
      * will be read from the PRAYFile.
14 14
      * @param PRAYFile $prayfile The PRAYFile that this DSAG block belongs to.
15
-     * @param $name The block's name.
15
+     * @param string $name The block's name.
16 16
      * @param $content The binary data of this block. May be null.
17 17
      * @param $flags The block's flags
18 18
      */
Please login to merge, or discard this patch.