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 ( 773926...b89009 )
by Lukáš
10:02
created
src/UI/ApprovePresenterTrait.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Lookyman\NetteOAuth2Server\UI;
4 4
 
5
-use League\OAuth2\Server\AuthorizationServer;
6 5
 use Lookyman\NetteOAuth2Server\RedirectConfig;
7 6
 use Lookyman\NetteOAuth2Server\Storage\IAuthorizationRequestSerializer;
8 7
 use Lookyman\NetteOAuth2Server\User\UserEntity;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
 	{
44 44
 		$control = $this->approveControlFactory->create();
45 45
 
46
-		$control->onAnchor[] = function (ApproveControl $control) {
46
+		$control->onAnchor[] = function(ApproveControl $control) {
47 47
 			if (!$this->redirectConfig) {
48 48
 				$this->error('RedirectConfig not set', IResponse::S500_INTERNAL_SERVER_ERROR);
49 49
 			}
Please login to merge, or discard this patch.
src/UI/ResourcePresenter.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,6 @@
 block discarded – undo
10 10
 use Nette\Http\IResponse;
11 11
 use Psr\Log\LoggerAwareInterface;
12 12
 use Psr\Log\LoggerAwareTrait;
13
-use Zend\Diactoros\Stream;
14 13
 
15 14
 abstract class ResourcePresenter extends Presenter implements LoggerAwareInterface
16 15
 {
Please login to merge, or discard this patch.
src/Storage/IIAuthorizationRequestSerializer.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -7,14 +7,14 @@
 block discarded – undo
7 7
 interface IAuthorizationRequestSerializer
8 8
 {
9 9
 	/**
10
-	* @param AuthorizationRequest $authorizationRequest
11
-	* @return string
12
-	*/
10
+	 * @param AuthorizationRequest $authorizationRequest
11
+	 * @return string
12
+	 */
13 13
 	public function serialize(AuthorizationRequest $authorizationRequest): string;
14 14
 
15 15
 	/**
16
-	* @param string $data
17
-	* @return AuthorizationRequest
18
-	*/
16
+	 * @param string $data
17
+	 * @return AuthorizationRequest
18
+	 */
19 19
 	public function unserialize(string $data): AuthorizationRequest;
20 20
 }
Please login to merge, or discard this patch.
src/User/UserRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 	public function __construct(User $user, callable $credentialsValidator = null)
23 23
 	{
24 24
 		$this->user = $user;
25
-		$this->credentialsValidator = $credentialsValidator ?: function () {
25
+		$this->credentialsValidator = $credentialsValidator ?: function() {
26 26
 			try {
27 27
 				call_user_func_array([$this->user, 'login'], func_get_args());
28 28
 
Please login to merge, or discard this patch.