The application has base classes, for quick access they do not have spaces, they are often used in modules, for example:
namespace module; class MyClass extends \BaseClass { public function __construct() { \TempClass::...; // ... } } Writing before each class \гадость doesn’t really look and read
I would like something like this:
class module\MyClass extends BaseClass { public function __construct() { TempClass::...; // ... } } Class MyClass I call only once, and the base at every step. Is there a way to do something about it?