We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 329563a + 0dd69fb commit e14240dCopy full SHA for e14240d
php_companion/utils.py
@@ -83,7 +83,7 @@ def get_composer():
83
def get_namespace(filename):
84
data = get_composer()
85
for _replace_with, _path in data['autoload']['psr-4'].items():
86
- _path = normalize_to_system_style_path(_path)
+ _path = normalize_to_system_style_path(_path)
87
if _path.startswith('./'):
88
_path = _path[2:]
89
@@ -93,7 +93,7 @@ def get_namespace(filename):
93
return namespace.strip("\\").replace('\\\\', '\\')
94
95
for _replace_with, _path in data['autoload-dev']['psr-4'].items():
96
97
98
99
0 commit comments