It's ugly, but it works... The only way I could get the tests pass under PHP 7.2 was to use string to refer to Nette\Object. Using alias or FQN does not work, because it triggers autoloading during static analysis and an error is thrown due to the Nette\Object code.
Fixes #8
It's ugly, but it works... The only way I could get the tests pass under PHP 7.2 was to use string to refer to
Nette\Object
. Using alias or FQN does not work, because it triggers autoloading during static analysis and an error is thrown due to theNette\Object
code.