We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 778e4f6 commit 24160b3Copy full SHA for 24160b3
src/Symfony/Component/ClassLoader/Tests/ApcClassLoaderTest.php
@@ -14,15 +14,12 @@
14
use Symfony\Component\ClassLoader\ApcClassLoader;
15
use Symfony\Component\ClassLoader\ClassLoader;
16
17
-/**
18
- * @requires extension apc
19
- */
20
class ApcClassLoaderTest extends \PHPUnit_Framework_TestCase
21
{
22
protected function setUp()
23
24
if (!(ini_get('apc.enabled') && ini_get('apc.enable_cli'))) {
25
- $this->markTestSkipped('The apc extension is available, but not enabled.');
+ $this->markTestSkipped('The apc extension is not enabled.');
26
} else {
27
apcu_clear_cache();
28
}
0 commit comments