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 2aba6fc commit f8554caCopy full SHA for f8554ca
src/VersionControl/GitCommandBundle/Tests/GitCommandTestCase.php
@@ -5,12 +5,16 @@
5
use VersionControl\GitCommandBundle\GitCommands\GitCommand;
6
use Symfony\Component\Filesystem\Filesystem;
7
8
+if (!class_exists('\PHPUnit_Framework_TestCase') && class_exists('\PHPUnit\Framework\TestCase')) {
9
+ class_alias('\PHPUnit\Framework\TestCase', '\PHPUnit_Framework_TestCase');
10
+}
11
+
12
/**
13
* Description of GitCommandTestCase.
14
*
15
* @author fr_user
16
*/
-class GitCommandTestCase extends \PHPUnit\Framework\TestCase
17
+class GitCommandTestCase extends \PHPUnit_Framework_TestCase
18
{
19
20
* @var GitCommands
0 commit comments