13 lines
179 B
PHP
13 lines
179 B
PHP
|
<?php
|
||
|
|
||
|
namespace Doctrine\Tests;
|
||
|
|
||
|
use PHPUnit\Framework\TestCase;
|
||
|
|
||
|
/**
|
||
|
* Base testcase class for all Doctrine testcases.
|
||
|
*/
|
||
|
abstract class DoctrineTestCase extends TestCase
|
||
|
{
|
||
|
}
|