Skip to content

Commit c574cb3

Browse files
committed
Fixed some Travis CI issues
1 parent c3c902b commit c574cb3

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

.php_cs.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ COMMENT;
1111

1212
$finder = PhpCsFixer\Finder::create()
1313
->in(__DIR__)
14+
->exclude('config')
1415
->exclude('var')
1516
->exclude('web/bundles')
1617
->exclude('web/css')
1718
->exclude('web/fonts')
1819
->exclude('web/js')
19-
->notPath('web/config.php')
2020
;
2121

2222
return PhpCsFixer\Config::create()

public/index.php

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,18 @@
11
<?php
22

3+
/*
4+
* This file is part of the Symfony package.
5+
*
6+
* (c) Fabien Potencier <[email protected]>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
312
use App\Kernel;
13+
use Symfony\Component\Debug\Debug;
414
use Symfony\Component\Dotenv\Dotenv;
515
use Symfony\Component\HttpFoundation\Request;
6-
use Symfony\Component\Debug\Debug;
716

817
require __DIR__.'/../vendor/autoload.php';
918

src/Kernel.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Symfony package.
5+
*
6+
* (c) Fabien Potencier <[email protected]>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
312
namespace App;
413

514
use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;

0 commit comments

Comments
 (0)