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
Branch master (276be6)
by Lukáš
03:12
created
src/Client/ClientRepository.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
 	 * @param string $grantType
41 41
 	 * @param string|null $clientSecret
42 42
 	 * @param bool $mustValidateSecret
43
-	 * @return ClientEntityInterface|null
43
+	 * @return ClientEntity|null
44 44
 	 */
45 45
 	public function getClientEntity($clientIdentifier, $grantType, $clientSecret = null, $mustValidateSecret = true)
46 46
 	{
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
 	{
33 33
 		$this->entityManager = $entityManager;
34 34
 		$this->repository = $entityManager->getRepository(ClientEntity::class);
35
-		$this->secretValidator = $secretValidator ?: function ($expected, $actual) { return hash_equals($expected, $actual); };
35
+		$this->secretValidator = $secretValidator ?: function($expected, $actual) { return hash_equals($expected, $actual); };
36 36
 	}
37 37
 
38 38
 	/**
Please login to merge, or discard this patch.
src/Scope/ScopeQuery.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
 	 */
20 20
 	public function byIdentifier($identifier)
21 21
 	{
22
-		$this->filters[] = function (QueryBuilder $queryBuilder) use ($identifier) {
22
+		$this->filters[] = function(QueryBuilder $queryBuilder) use ($identifier) {
23 23
 			$queryBuilder->andWhere('s.identifier = :identifier')->setParameter('identifier', $identifier);
24 24
 		};
25 25
 		return $this;
Please login to merge, or discard this patch.
src/RefreshToken/RefreshTokenQuery.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
 	 */
20 20
 	public function byIdentifier($identifier)
21 21
 	{
22
-		$this->filters[] = function (QueryBuilder $queryBuilder) use ($identifier) {
22
+		$this->filters[] = function(QueryBuilder $queryBuilder) use ($identifier) {
23 23
 			$queryBuilder->andWhere('rt.identifier = :identifier')->setParameter('identifier', $identifier);
24 24
 		};
25 25
 		return $this;
Please login to merge, or discard this patch.
src/Client/ClientQuery.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
 	 */
20 20
 	public function byIdentifier($identifier)
21 21
 	{
22
-		$this->filters[] = function (QueryBuilder $queryBuilder) use ($identifier) {
22
+		$this->filters[] = function(QueryBuilder $queryBuilder) use ($identifier) {
23 23
 			$queryBuilder->andWhere('c.identifier = :identifier')->setParameter('identifier', $identifier);
24 24
 		};
25 25
 		return $this;
Please login to merge, or discard this patch.
src/AuthCode/AuthCodeQuery.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
 	 */
20 20
 	public function byIdentifier($identifier)
21 21
 	{
22
-		$this->filters[] = function (QueryBuilder $queryBuilder) use ($identifier) {
22
+		$this->filters[] = function(QueryBuilder $queryBuilder) use ($identifier) {
23 23
 			$queryBuilder->andWhere('ac.identifier = :identifier')->setParameter('identifier', $identifier);
24 24
 		};
25 25
 		return $this;
Please login to merge, or discard this patch.
src/AccessToken/AccessTokenQuery.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
 	 */
20 20
 	public function byIdentifier($identifier)
21 21
 	{
22
-		$this->filters[] = function (QueryBuilder $queryBuilder) use ($identifier) {
22
+		$this->filters[] = function(QueryBuilder $queryBuilder) use ($identifier) {
23 23
 			$queryBuilder->andWhere('at.identifier = :identifier')->setParameter('identifier', $identifier);
24 24
 		};
25 25
 		return $this;
Please login to merge, or discard this patch.