-
Notifications
You must be signed in to change notification settings - Fork 30
Open
Labels
Description
When I have class with namespace like this:
<?php
namespace My\Name\Space;
class MyClass {
public function testFunction() {
new DateTi //case 1
new \DateTi //case 2
}
}For case one padawan is giving suggestions when pointing on 9th column (D letter), but for the case 2 when pointing at 10th column (D letter as in case 1).
Is that how it should be?
I'm not even sure if the case 1 should be suggested as the code is invalid (it's creating My\Name\Space\DateTi.... For the second case, shouldn't completion work when pointing at backslash (as it is part of the class name)?