nette / utils

🛠 Lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.
https://doc.nette.org/utils
Other
1.98k stars 147 forks source link

typo #255

Closed martinlegat closed 3 years ago

martinlegat commented 3 years ago

I think there is missing backslash, so line 25 is triggering search of interface with FQN \Nette\Localization\Nette\Localization\ITranslator. In my project I am using only Latte and Utils. Autoloading is done by composer autoloader and after it is my second autoloader. My second autoloader tries to search for unexisting interface \Nette\Localization\Nette\Localization\ITranslator, because composer autoloader did not find such interface (I think it should be \Nette\Localization\ITranslator which is by composer autoload pointed to compatibility.php file).

dg commented 3 years ago

Thanks