Skip to content

Commit 11e2c3a

Browse files
committed
add test fixture for shortname import in class name
1 parent 4a47deb commit 11e2c3a

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?php
2+
3+
/**
4+
* no namespace on purpose to use short name
5+
*/
6+
class ShortNameImportInClassName
7+
{
8+
public \ShortNameImportInClassName $obj;
9+
}
10+
11+
?>
12+
-----
13+
<?php
14+
15+
/**
16+
* no namespace on purpose to use short name
17+
*/
18+
class ShortNameImportInClassName
19+
{
20+
public ShortNameImportInClassName $obj;
21+
}
22+
23+
?>

0 commit comments

Comments
 (0)