We have tests in our project that test components which have dependencies on the Latte template engine class. In these tests, we mock that class like so:
$mockTemplateEngine = \Mockery::mock(Nette\Bridges\ApplicationLatte\Template::class);
This used to work flawlessly in v2, but not anymore, because since we switched to Nette v3 Template::__toString() has become final:
Fatal error: Cannot override final method Nette\Bridges\ApplicationLatte\Template::__toString() in [..]
I would love to see this method made non-final again - if that change wasn't unavoidable for some other reason - so we can mock Template::class again in our tests. Thank you!
We have tests in our project that test components which have dependencies on the Latte template engine class. In these tests, we mock that class like so:
$mockTemplateEngine = \Mockery::mock(Nette\Bridges\ApplicationLatte\Template::class);This used to work flawlessly in v2, but not anymore, because since we switched to Nette v3
Template::__toString()has becomefinal:Fatal error: Cannot override final method Nette\Bridges\ApplicationLatte\Template::__toString() in [..]I would love to see this method made non-final again - if that change wasn't unavoidable for some other reason - so we can mock
Template::classagain in our tests. Thank you!