File tree Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 19
19
"php" : " >=7.0" ,
20
20
"symfony/framework-bundle" : " ~3.2|~4.0" ,
21
21
"twig/twig" : " ~2.0" ,
22
- "phpoffice/phpspreadsheet" : " ~1.6 .0"
22
+ "phpoffice/phpspreadsheet" : " ~1.7 .0"
23
23
},
24
24
"require-dev" : {
25
25
"symfony/symfony" : " ~3.4|~4.0" ,
Original file line number Diff line number Diff line change 6
6
bootstrap =" ./vendor/autoload.php"
7
7
>
8
8
<php >
9
- <env name =" SYMFONY_PHPUNIT_VERSION" value =" 6.5" />
9
+ <ini name =" error_reporting" value =" -1" />
10
+ <server name =" KERNEL_CLASS" value =" AppKernel" />
11
+ <env name =" SYMFONY_PHPUNIT_VERSION" value =" 7.5.3" />
12
+ <env name =" SYMFONY_DEPRECATIONS_HELPER" value =" disabled" />
10
13
</php >
11
14
12
15
<testsuites >
Original file line number Diff line number Diff line change 5
5
use MewesK \TwigSpreadsheetBundle \Helper \Filesystem ;
6
6
use MewesK \TwigSpreadsheetBundle \Tests \Functional \Fixtures \TestAppKernel ;
7
7
use PhpOffice \PhpSpreadsheet \IOFactory ;
8
+ use PhpOffice \PhpSpreadsheet \Reader \Exception ;
8
9
use PhpOffice \PhpSpreadsheet \Spreadsheet ;
9
10
use Symfony \Bundle \FrameworkBundle \Client ;
10
11
use Symfony \Bundle \FrameworkBundle \Routing \Router ;
11
12
use Symfony \Bundle \FrameworkBundle \Test \WebTestCase ;
13
+ use Symfony \Component \Filesystem \Exception \IOException ;
12
14
use Symfony \Component \HttpFoundation \Request ;
13
15
use Symfony \Component \HttpFoundation \Response ;
14
16
@@ -33,7 +35,7 @@ abstract class BaseFunctionalTest extends WebTestCase
33
35
/**
34
36
* {@inheritdoc}
35
37
*
36
- * @throws \Symfony\Component\Filesystem\Exception\ IOException
38
+ * @throws IOException
37
39
*/
38
40
public static function setUpBeforeClass ()
39
41
{
@@ -66,7 +68,7 @@ protected static function createKernel(array $options = [])
66
68
}
67
69
68
70
/**
69
- * @throws \Symfony\Component\Filesystem\Exception\ IOException
71
+ * @throws IOException
70
72
*/
71
73
public function setUp ()
72
74
{
@@ -79,8 +81,8 @@ public function setUp()
79
81
* @param array $routeParameters
80
82
* @param string $format
81
83
*
82
- * @throws \Symfony\Component\Filesystem\Exception\ IOException
83
- * @throws \PhpOffice\PhpSpreadsheet\Reader\ Exception
84
+ * @throws IOException
85
+ * @throws Exception
84
86
*
85
87
* @return Spreadsheet
86
88
*/
You can’t perform that action at this time.
0 commit comments