php-src/Zend/tests/class_alias_004.phpt
Kalle Sommer Nielsen 67b907f059 Change the error message for colliding class/interface/trait names to be a little more clearer.
C:\> php -r "interface stdClass { }"
  Error: Cannot declare interface stdClass, because the name is already in use in Command Line Code on line 1
2015-03-26 01:44:23 +01:00

15 lines
251 B
PHP

--TEST--
Testing creation of alias using an existing interface name
--FILE--
<?php
class foo { }
interface test { }
class_alias('foo', 'test');
?>
--EXPECTF--
Warning: Cannot declare class test, because the name is already in use in %s on line %d