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 ( b4f481...c16c08 )
by
unknown
24:02 queued 12s
created
DataTable/Table/Element/Column/Link.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,10 +11,10 @@
 block discarded – undo
11 11
     {
12 12
         parent::configureOptions($resolver);
13 13
         $resolver->setRequired('LinkTextField');
14
-        $resolver->setDefault('AltTextField', function (Options $options) {
14
+        $resolver->setDefault('AltTextField', function(Options $options) {
15 15
             return $options['LinkTextField'];
16 16
         });
17
-        $resolver->setDefault('UrlField', function (Options $options) {
17
+        $resolver->setDefault('UrlField', function(Options $options) {
18 18
             return $options['LinkTextField'];
19 19
         });
20 20
         $resolver->setDefault('UrlCallback', function($value, $row) {
Please login to merge, or discard this patch.
Tests/DataTable/ColumnBuilderTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
     {
11 11
         $builder = new ColumnBuilder();
12 12
 
13
-        for ($i=0;$i<3;$i++) {
13
+        for ($i = 0; $i<3; $i++) {
14 14
             $builder->add("testcolumn".$i, new Column("test column ".$i));
15 15
         }
16 16
 
Please login to merge, or discard this patch.
Tests/DataTable/Column/ColumnTest.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,10 +28,10 @@
 block discarded – undo
28 28
     public function testBasicGetterSetter()
29 29
     {
30 30
         $column = (new Column("test", ['auto_escape' => false]))
31
-                   ->setFormatValueCallback(function() {
31
+                    ->setFormatValueCallback(function() {
32 32
                         return 'test ok';
33 33
                     })
34
-                   ->setIdentifier('test');
34
+                    ->setIdentifier('test');
35 35
 
36 36
         $this->assertEquals("test", $column->getOptions()['title']);
37 37
         $this->assertEquals("test ok", call_user_func($column->getFormatValueCallback()));
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     public function testFormatCellUsesCallback()
16 16
     {
17 17
         $column = new Column("test");
18
-        $column->setFormatValueCallback(function($val, $row){
18
+        $column->setFormatValueCallback(function($val, $row) {
19 19
             return $val.'ok';
20 20
         });
21 21
 
Please login to merge, or discard this patch.
Tests/DataTable/RegistryTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,8 +12,8 @@
 block discarded – undo
12 12
     public function testRetrieveTableById()
13 13
     {
14 14
         $table = $this->getMockBuilder(AbstractTable::class)
15
-                      ->disableOriginalConstructor()
16
-                      ->getMock();
15
+                        ->disableOriginalConstructor()
16
+                        ->getMock();
17 17
 
18 18
         $registry = new DataTableRegistry(['test' => $table]);
19 19
         $this->assertEquals($table, $registry->retrieveByTableId('test'));
Please login to merge, or discard this patch.
Tests/DataTable/Request/PaginateRequestTest.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -13,9 +13,9 @@
 block discarded – undo
13 13
     {
14 14
         $tableMock = $this->getTableMock();
15 15
         $request = new Request([], [
16
-           'order' => [['column' => '1', 'dir' => 'desc']],
17
-           'start'  => 242,
18
-           'length' => 342
16
+            'order' => [['column' => '1', 'dir' => 'desc']],
17
+            'start'  => 242,
18
+            'length' => 342
19 19
         ]);
20 20
 
21 21
         $paginateRequest = PaginateRequest::fromHttpRequest($request, $tableMock);
Please login to merge, or discard this patch.
Tests/DataTable/Formatter/DefaultFormatterTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,8 +24,8 @@
 block discarded – undo
24 24
         $formatter = new DefaultFormatter();
25 25
 
26 26
         $row = [
27
-          'escapedcolumn' => '<testval',
28
-          'unescapedcolumn' => '<testval',
27
+            'escapedcolumn' => '<testval',
28
+            'unescapedcolumn' => '<testval',
29 29
         ];
30 30
 
31 31
         $expected = [
Please login to merge, or discard this patch.
Tests/Controller/DataTableControllerTest.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -19,19 +19,19 @@
 block discarded – undo
19 19
     {
20 20
         $tableMock = $this->getDataTableMock();
21 21
         $registryMock = $this->getMockBuilder('CrossKnowledge\DataTableBundle\DataTable\DataTableRegistry')
22
-                             ->disableOriginalConstructor()
23
-                             ->getMock();
22
+                                ->disableOriginalConstructor()
23
+                                ->getMock();
24 24
 
25 25
         $registryMock->expects($this->once())
26
-                     ->method('retrieveByTableId')
27
-                     ->will($this->returnValue($tableMock));
26
+                        ->method('retrieveByTableId')
27
+                        ->will($this->returnValue($tableMock));
28 28
 
29 29
         $rendererMock = $this->getMockBuilder('CrossKnowledge\DataTableBundle\DataTable\Renderer\JsonRenderer')
30
-                             ->getMock();
30
+                                ->getMock();
31 31
 
32 32
         $rendererMock->expects($this->once())
33
-                         ->method('renderJsonResponse')
34
-                         ->with($tableMock);
33
+                            ->method('renderJsonResponse')
34
+                            ->with($tableMock);
35 35
 
36 36
         $request = new Request([], [], ['tableid' => 'testtable_id']);
37 37
 
Please login to merge, or discard this patch.
Tests/UsesContainerTrait.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
 
12 12
 trait UsesContainerTrait
13 13
 {
14
-    protected function compileContainer(ContainerBuilder $container, $loadExt=true)
14
+    protected function compileContainer(ContainerBuilder $container, $loadExt = true)
15 15
     {
16 16
         if ($loadExt) {
17 17
             $extension = new CrossKnowledgeDataTableExtension();
Please login to merge, or discard this patch.
Tests/bootstrap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 //From https://github.com/FriendsOfSymfony/FOSUserBundle/blob/master/Tests/bootstrap.php
4
-if (!($loader = @include __DIR__ . '/../vendor/autoload.php')) {
4
+if (!($loader = @include __DIR__.'/../vendor/autoload.php')) {
5 5
     echo <<<EOT
6 6
 You need to install the project dependencies using Composer:
7 7
 $ wget http://getcomposer.org/composer.phar
Please login to merge, or discard this patch.