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 ( e0ffd1...07b001 )
by Shea
12:14
created
src/controllers/BlockAdmin.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
     }
49 49
 
50 50
     /**
51
-     * @return Form
51
+     * @return \SilverStripe\Forms\Form
52 52
      **/
53 53
     public function getEditForm($id = null, $fields = null)
54 54
     {
Please login to merge, or discard this patch.
src/extensions/BlocksSiteTreeExtension.php 1 patch
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.
src/model/Block.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
     protected $controller;
127 127
 
128 128
     /**
129
-     * @return mixed
129
+     * @return string
130 130
      */
131 131
     public function getTypeForGridfield()
132 132
     {
@@ -237,7 +237,7 @@  discard block
 block discarded – undo
237 237
      * looks for templates that match BlockClassName_AreaName
238 238
      * falls back to BlockClassName.
239 239
      *
240
-     * @return string
240
+     * @return DBHTMLText
241 241
      **/
242 242
     public function forTemplate()
243 243
     {
@@ -253,7 +253,7 @@  discard block
 block discarded – undo
253 253
     }
254 254
 
255 255
     /**
256
-     * @return string
256
+     * @return DBHTMLText
257 257
      */
258 258
     public function BlockHTML()
259 259
     {
@@ -428,7 +428,7 @@  discard block
 block discarded – undo
428 428
     /**
429 429
      * Check if this block has been published.
430 430
      *
431
-     * @return bool True if this page has been published.
431
+     * @return string True if this page has been published.
432 432
      */
433 433
     public function isPublishedNice()
434 434
     {
Please login to merge, or discard this patch.
src/model/BlockSet.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@
 block discarded – undo
126 126
     /**
127 127
      * Returns a list of pages this BlockSet features on.
128 128
      *
129
-     * @return DataList
129
+     * @return \SilverStripe\ORM\DataList
130 130
      */
131 131
     public function Pages()
132 132
     {
Please login to merge, or discard this patch.