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 ( 166e15...37971c )
by Danger
02:40
created
applications/workspace/src/App.php 2 patches
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -13,8 +13,6 @@
 block discarded – undo
13 13
 use Silex\Provider\MonologServiceProvider;
14 14
 use Ivoba\Silex\RedBeanServiceProvider;
15 15
 use Silex\Provider\SessionServiceProvider;
16
-use Carbon\Carbon;
17
-use Monolog\Logger;
18 16
 
19 17
 // FIXME va messo nel php.ini
20 18
 date_default_timezone_set('Europe/Rome');
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,10 +37,10 @@
 block discarded – undo
37 37
 // @see: https://github.com/ivoba/redbean-service-provider
38 38
 //'mysql:host=localhost;dbname=mydatabase', 'user', 'password'
39 39
 
40
-if($config['database']['type']==='sqlite'){
40
+if ($config['database']['type'] === 'sqlite') {
41 41
     $app->register(new RedBeanServiceProvider(), array('db.options' => array('dsn' => 'sqlite:'.$config['database']['host'])));
42 42
 }
43
-if($config['database']['type']==='mysql'){
43
+if ($config['database']['type'] === 'mysql') {
44 44
     $app->register(new RedBeanServiceProvider(), ['db.options' =>
45 45
                                                     [
46 46
                                                         'dsn' => 'mysql:'.$config['database']['host'].';dbname='.$config['database']['dbname'],
Please login to merge, or discard this patch.
applications/workspace/test/Tests/BadgeTest.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Tests;
4 4
 
5 5
 use Silex\WebTestCase;
6
-use JsonSchema\Validator;
7 6
 
8 7
 class WorkspaceTest extends WebTestCase
9 8
 {
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -9,14 +9,14 @@
 block discarded – undo
9 9
 {
10 10
     use AbstractAppTest;
11 11
 
12
-    public function testGetBadgeSpecialita(){
12
+    public function testGetBadgeSpecialita() {
13 13
         $schema = __DIR__.'/../../../../api/schemas/badgeList.json';
14 14
         $client = $this->createClient();
15 15
         $client = $this->logIn($client);
16 16
 
17
-        $kind_of_badge = ['specialita','brevetti','eventi'];
17
+        $kind_of_badge = ['specialita', 'brevetti', 'eventi'];
18 18
 
19
-        foreach($kind_of_badge as $option){
19
+        foreach ($kind_of_badge as $option) {
20 20
 
21 21
             $crawler = $client->request('GET', '/api/v1/badge/?filterBy='.$option);
22 22
             $response = $client->getResponse();
Please login to merge, or discard this patch.
applications/workspace/test/Tests/WorkspaceTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Tests;
4 4
 
5 5
 use Silex\WebTestCase;
6
-use Carbon\Carbon;
7 6
 
8 7
 class WorkspaceTest extends WebTestCase
9 8
 {
Please login to merge, or discard this patch.