@@ -39,8 +39,8 @@ public function testCollect()
39
39
$ this ->assertSame (4 === Kernel::MINOR_VERSION , $ c ->isSymfonyLts ());
40
40
$ this ->assertNull ($ c ->getToken ());
41
41
$ this ->assertSame (\extension_loaded ('xdebug ' ), $ c ->hasXDebug ());
42
- $ this ->assertSame (\extension_loaded ('Zend OPcache ' ) && filter_var (\ini_get ('opcache.enable ' ), \FILTER_VALIDATE_BOOLEAN ), $ c ->hasZendOpcache ());
43
- $ this ->assertSame (\extension_loaded ('apcu ' ) && filter_var (\ini_get ('apc.enabled ' ), \FILTER_VALIDATE_BOOLEAN ), $ c ->hasApcu ());
42
+ $ this ->assertSame (\extension_loaded ('Zend OPcache ' ) && filter_var (\ini_get ('opcache.enable ' ), \FILTER_VALIDATE_BOOL ), $ c ->hasZendOpcache ());
43
+ $ this ->assertSame (\extension_loaded ('apcu ' ) && filter_var (\ini_get ('apc.enabled ' ), \FILTER_VALIDATE_BOOL ), $ c ->hasApcu ());
44
44
$ this ->assertSame (sprintf ('%s.%s ' , Kernel::MAJOR_VERSION , Kernel::MINOR_VERSION ), $ c ->getSymfonyMinorVersion ());
45
45
$ this ->assertContains ($ c ->getSymfonyState (), ['eol ' , 'eom ' , 'dev ' , 'stable ' ]);
46
46
@@ -67,8 +67,8 @@ public function testCollectWithoutKernel()
67
67
$ this ->assertSame (4 === Kernel::MINOR_VERSION , $ c ->isSymfonyLts ());
68
68
$ this ->assertNull ($ c ->getToken ());
69
69
$ this ->assertSame (\extension_loaded ('xdebug ' ), $ c ->hasXDebug ());
70
- $ this ->assertSame (\extension_loaded ('Zend OPcache ' ) && filter_var (\ini_get ('opcache.enable ' ), \FILTER_VALIDATE_BOOLEAN ), $ c ->hasZendOpcache ());
71
- $ this ->assertSame (\extension_loaded ('apcu ' ) && filter_var (\ini_get ('apc.enabled ' ), \FILTER_VALIDATE_BOOLEAN ), $ c ->hasApcu ());
70
+ $ this ->assertSame (\extension_loaded ('Zend OPcache ' ) && filter_var (\ini_get ('opcache.enable ' ), \FILTER_VALIDATE_BOOL ), $ c ->hasZendOpcache ());
71
+ $ this ->assertSame (\extension_loaded ('apcu ' ) && filter_var (\ini_get ('apc.enabled ' ), \FILTER_VALIDATE_BOOL ), $ c ->hasApcu ());
72
72
$ this ->assertSame (sprintf ('%s.%s ' , Kernel::MAJOR_VERSION , Kernel::MINOR_VERSION ), $ c ->getSymfonyMinorVersion ());
73
73
$ this ->assertContains ($ c ->getSymfonyState (), ['eol ' , 'eom ' , 'dev ' , 'stable ' ]);
74
74
0 commit comments