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 ( 662706...ccaf0d )
by
unknown
22:04
created
Tests/DataTable/Column/LinkTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,8 +39,8 @@
 block discarded – undo
39 39
             [
40 40
                 '<a href="/12" alt="image.png">image.png</a>',
41 41
                 [
42
-                    'UrlCallback' => function ($value, $row) {
43
-                        return '/' . $row['id_field'];
42
+                    'UrlCallback' => function($value, $row) {
43
+                        return '/'.$row['id_field'];
44 44
                     },
45 45
                 ],
46 46
             ],
Please login to merge, or discard this patch.
Tests/DataTable/Column/ColumnTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,8 +20,8 @@  discard block
 block discarded – undo
20 20
     public function testFormatCellUsesCallback()
21 21
     {
22 22
         $column = new Column("test");
23
-        $column->setFormatValueCallback(function ($val, $row) {
24
-            return $val . 'ok';
23
+        $column->setFormatValueCallback(function($val, $row) {
24
+            return $val.'ok';
25 25
         });
26 26
 
27 27
         $this->assertEquals('testok', $column->formatCell('test', [], 'view'));
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
     public function testBasicGetterSetter()
34 34
     {
35 35
         $column = (new Column("test", ['auto_escape' => false]))
36
-            ->setFormatValueCallback(function () {
36
+            ->setFormatValueCallback(function() {
37 37
                 return 'test ok';
38 38
             })
39 39
             ->setIdentifier('test');
Please login to merge, or discard this patch.
Tests/Controller/DataTableControllerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace CrossKnowledge\DataTableDundle\Tests\Controller;
4 4
 
5
-require_once __DIR__ . '/../UsesContainerTrait.php';
5
+require_once __DIR__.'/../UsesContainerTrait.php';
6 6
 
7 7
 use CrossKnowledge\DataTableBundle\Controller\DataTableController;
8 8
 use CrossKnowledge\DataTableBundle\DataTable\DataTableRegistry;
Please login to merge, or discard this patch.
Tests/CrossKnowledgeDataTableBundleTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
         (new CrossKnowledgeDataTableBundle())->build($container);
19 19
         $compilerPasses = $container->getCompilerPassConfig()->getBeforeOptimizationPasses();
20 20
 
21
-        $this->assertNotEmpty(array_filter($compilerPasses, function ($compilerPass) {
21
+        $this->assertNotEmpty(array_filter($compilerPasses, function($compilerPass) {
22 22
             return $compilerPass instanceof DatatablePass;
23 23
         }));
24 24
     }
Please login to merge, or discard this patch.
Tests/Twig/DataTableExtensionTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 use Twig\Extension\AbstractExtension;
12 12
 use Twig\TwigFunction;
13 13
 
14
-require_once __DIR__ . '/../UsesContainerTrait.php';
14
+require_once __DIR__.'/../UsesContainerTrait.php';
15 15
 
16 16
 class DataTableExtensionTest extends TestCase
17 17
 {
Please login to merge, or discard this patch.