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 ( 238ae8...22bcb6 )
by Tomasz
14:56
created
Resource/BaseResource.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
 	 * @param array $fieldNames
86 86
 	 *
87 87
 	 * @throws ResourceException when dehydration has been stopped
88
-	 * @return array
88
+	 * @return string|null
89 89
 	 */
90 90
 	protected function dehydrate(array $fieldNames = [])
91 91
 	{
Please login to merge, or discard this patch.
Resource/PaginatedListResource.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
 	 * @param int   $page
32 32
 	 * @param array $query
33 33
 	 *
34
-	 * @return Page
34
+	 * @return ResourceCollection
35 35
 	 */
36 36
 	public function getPage($page = 1, array $query = [])
37 37
 	{
Please login to merge, or discard this patch.
Service/Behavior/CustomFieldsTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
 
69 69
 	/**
70 70
 	 * @param string $name
71
-	 * @param mixed  $value
71
+	 * @param string  $value
72 72
 	 */
73 73
 	public function setCustomField($name, $value)
74 74
 	{
Please login to merge, or discard this patch.
Service/Contacts.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 	/**
18 18
 	 * @param int $page
19 19
 	 *
20
-	 * @return Page
20
+	 * @return \prgTW\BaseCRM\Resource\ResourceCollection
21 21
 	 */
22 22
 	public function all($page = 1)
23 23
 	{
Please login to merge, or discard this patch.
Service/Deals.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
 	 * @param int       $page
20 20
 	 * @param DealStage $stage defaults to DealStage::INCOMING
21 21
 	 *
22
-	 * @return Page
22
+	 * @return \prgTW\BaseCRM\Resource\ResourceCollection
23 23
 	 */
24 24
 	public function all($page = 1, DealStage $stage = null)
25 25
 	{
Please login to merge, or discard this patch.