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
Pull Request — master (#111)
by
unknown
03:16
created
code/extensions/BlocksSiteTreeExtension.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -267,6 +267,7 @@
 block discarded – undo
267 267
 	/**
268 268
 	 * Get all Blocks from BlockSets that apply to this page.
269 269
 	 *
270
+	 * @param string $area
270 271
 	 * @return ArrayList
271 272
 	 * */
272 273
 	public function getBlocksFromAppliedBlockSets($area = null, $includeDisabled = false)
Please login to merge, or discard this patch.
Unused Use Statements   -7 removed lines patch added patch discarded remove patch
@@ -3,21 +3,14 @@
 block discarded – undo
3 3
 namespace Blocks\Extensions;
4 4
 
5 5
 use Blocks\BlockManager;
6
-use Blocks\Model\Blockset;
7 6
 use Blocks\Forms\GridFieldConfig_BlockManager;
8
-
9 7
 use SilverStripe\CMS\Model\SiteTreeExtension;
10
-
11 8
 use SilverStripe\Forms\ReadonlyField;
12 9
 use SilverStripe\Forms\CheckboxField;
13 10
 use SilverStripe\Forms\FieldList;
14
-
15 11
 use SilverStripe\View\SSViewer;
16
-
17 12
 use SilverStripe\ORM\ArrayList;
18
-
19 13
 use SilverStripe\Security\Permission;
20
-
21 14
 use SilverStripe\Control\Controller;
22 15
 
23 16
 /**
Please login to merge, or discard this patch.
code/dataobjects/Block.php 1 patch
Unused Use Statements   -6 removed lines patch added patch discarded remove patch
@@ -3,22 +3,16 @@
 block discarded – undo
3 3
 namespace Blocks\Model;
4 4
 
5 5
 use Blocks\BlockManager;
6
-
7 6
 use SilverStripe\ORM\DataObject;
8 7
 use SilverStripe\ORM\Versioning\Versioned;
9
-
10 8
 use SilverStripe\Core\ClassInfo;
11
-
12 9
 use SilverStripe\View\Requirements;
13 10
 use SilverStripe\View\SSViewer;
14
-
15 11
 use SilverStripe\Control\Controller;
16
-
17 12
 use SilverStripe\Security\PermissionProvider;
18 13
 use SilverStripe\Security\Permission;
19 14
 use SilverStripe\Security\Group;
20 15
 use SilverStripe\Security\Member;
21
-
22 16
 use SilverStripe\Forms\DropdownField;
23 17
 use SilverStripe\Forms\HTMLText;
24 18
 use SilverStripe\Forms\OptionsetField;
Please login to merge, or discard this patch.
code/forms/GridfieldConfig_BlockManager.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,9 +3,7 @@
 block discarded – undo
3 3
 namespace Blocks\Forms;
4 4
 
5 5
 use Blocks\Model\Block;
6
-
7 6
 use SilverStripe\Control\Controller;
8
-
9 7
 use SilverStripe\Forms\DropdownField;
10 8
 use SilverStripe\Forms\GridField\GridFieldConfig;
11 9
 use SilverStripe\Forms\GridField\GridFieldDataColumns;
Please login to merge, or discard this patch.