Stanislav Malyshev wrote:
> Hi!
>
>>         $classes = ::get_declared_classes();
>>         $classes = ::array_merge($classes, ::get_declared_interfaces());
>>         $this->classes = ::array_flip($classes);
>>         unset($this->classes['NSParser::Parser']);
>>         $functions = ::get_defined_functions();
>>         $this->functions = ::array_flip($functions['internal']);
>>         if (@::is_file($path)) {
>>             $path = ::file_get_contents($path);
>
> Do you really think that's how PHP code should look like - constant
> obsessive ::-ing? For my taste, it looks very bad.
Actually, no.  The irony of your message is that the code you quote is
used to generate use statements so ::this ::is ::unnecessary.

Greg

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to