1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
<?php
declare(strict_types=1);
namespace Doctrine\Tests\ORM\Tools\Export;
use function class_exists;
/**
* Test case for YamlClassMetadataExporterTest
*
* @link http://www.phpdoctrine.org
*/
class YamlClassMetadataExporterTest extends ClassMetadataExporterTestCase
{
protected function getType(): string
{
if (! class_exists('Symfony\Component\Yaml\Yaml', true)) {
self::markTestSkipped('Please install Symfony YAML Component into the include path of your PHP installation.');
}
return 'yaml';
}
}
|