Skip to content

Commit 7831a09

Browse files
authored
docs: Remove obsolete doc entry (#1046)
1 parent 36b530c commit 7831a09

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

docs/limitations.md

-14
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
- [Composer Autoloader](#composer-autoloader)
1010
- [Composer Plugins](#composer-plugins)
1111
- [PSR-0 Partial support](#psr-0-partial-support)
12-
- [Files autoloading](#files-autoloading)
1312
- [Exposing/Excluding traits](#exposingexcluding-traits)
1413
- [Exposing/Excluding enums](#exposingexcluding-enums)
1514
- [Declaring a custom namespaced function `function_exists()`](#declaring-a-custom-namespaced-function-function_exists)
@@ -238,19 +237,6 @@ transforming it to PSR-4, i.e. in the case above:
238237
If this works for the classes under `src/JsonMapper/`, it will not for `JsonMapper.php`.
239238

240239

241-
### Files autoloading
242-
243-
Currently, scoping autoloaded files, i.e. files registered to Composer via the
244-
[`autoload.files`][autoload-files] setting only half work. Indeed, the scoping
245-
itself works, but if your scoped code happen to try to load another Composer
246-
based project with the same file, it will not. The problem identified is that
247-
the Composer autoloader uses hash to know if a file has been loaded or not already.
248-
Unfortunately, this hash is defined by the package and file name, which means
249-
the scoped file and non-scoped file will have the same hash resulting in errors.
250-
251-
This is a limitation that should be fixable, check [#298] for the progress.
252-
253-
254240
### Exposing/Excluding traits
255241

256242
There is currently no way to expose or exclude a trait. Since there is no

0 commit comments

Comments
 (0)