Skip to content

Commit

Permalink
[AutoImport] Handle inner with sub namespace on auto import
Browse files Browse the repository at this point in the history
  • Loading branch information
samsonasik committed Jan 18, 2025
1 parent 71534e3 commit 1997028
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions tests/Issues/AutoImport/Fixture/inner_with_subnamespace.php.inc
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?php

namespace helpers;

class InnerWithSubnamespace extends helpers\Sub\VarDumper
{
}

?>
-----
<?php

namespace helpers;

use helpers\Sub\VarDumper;

class InnerWithSubnamespace extends VarDumper
{
}

?>

0 comments on commit 1997028

Please sign in to comment.