But Aside from that, it's simply good practice.
That would easily add a hundred bytes to the source code size. Per file.
Let's take another example... If you're calling preg_match_all() and you want to use the default behavior, will you add the PREG_PATTERN_ORDER flag to it? No, you'll just skip the flag altogether...[1] That's the same here. For convenience, you don't have to specify a certain keyword.
As far as $options = & we::$opt or whatever, that's fine, but the goal should be eventually to remove it. Global variables are not actually that clever.
| 1. | And of course, I just checked and there are a few cases in Wedge where it's specified... Eh, I guess I'll have to remove them :P) |




