2494ce49b5
Classes need to take up space in the alias map (according to zend). Suprisingly, functions and constants don't. When importing a duplicate, zend doesn't do anything and just continues, and we currently overwrite the symbol. Should I match zend on this, or is the fact that we both continue working good enough?
9 linhas
162 B
PHP
9 linhas
162 B
PHP
<?php
|
|
|
|
namespace A;
|
|
class Cl { public function __construct() { return "a"; } }
|
|
|
|
namespace B;
|
|
class Cl { public function __construct() { return "b"; } }
|
|
use A\Cl;
|