1
0
mirror of https://github.com/php/php-src.git synced 2026-03-28 02:02:32 +01:00
Files
archived-php-src/ext/reflection/tests/reflectionExtension_getDependencies_basic.phpt
2008-06-12 21:25:28 +00:00

19 lines
381 B
PHP

--TEST--
ReflectionExtension::getDependencies() method on an extension with a required and conflicting dependency
--CREDITS--
Felix De Vliegher <felix.devliegher@gmail.com>
--FILE--
<?php
$dom = new ReflectionExtension('dom');
var_dump($dom->getDependencies());
?>
==DONE==
--EXPECTF--
array(2) {
[%s"libxml"]=>
%s(8) "Required"
[%s"domxml"]=>
%s(9) "Conflicts"
}
==DONE==