public static function ClassUtilsTest::dataGetClass in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/doctrine/common/tests/Doctrine/Tests/Common/Util/ClassUtilsTest.php \Doctrine\Tests\Common\Util\ClassUtilsTest::dataGetClass()
File
- vendor/
doctrine/ common/ tests/ Doctrine/ Tests/ Common/ Util/ ClassUtilsTest.php, line 10
Class
Namespace
Doctrine\Tests\Common\UtilCode
public static function dataGetClass() {
return array(
array(
'stdClass',
'stdClass',
),
array(
'Doctrine\\Common\\Util\\ClassUtils',
'Doctrine\\Common\\Util\\ClassUtils',
),
array(
'MyProject\\Proxies\\__CG__\\stdClass',
'stdClass',
),
array(
'MyProject\\Proxies\\__CG__\\OtherProject\\Proxies\\__CG__\\stdClass',
'stdClass',
),
array(
'MyProject\\Proxies\\__CG__\\Doctrine\\Tests\\Common\\Util\\ChildObject',
'Doctrine\\Tests\\Common\\Util\\ChildObject',
),
);
}