public static function ClassUtilsTest::dataGetClass in Plug 7
File
- lib/
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',
),
);
}