Version: 3.1.7
Bug Description
When using nette/application 3.1.7 and nette/utils 3.2.7 together, Tracy shows a deprecation error in SmartObject:
User Deprecated
Nette\Application\UI\Presenter::getContext() is deprecated, use dependency injection.
and the file where the error is being triggered is:
[vendor\nette\utils\src\SmartObject.php:80], namely
: if ($prop & 0b0100) { // return by reference
78: return $this->$m();
79: } else {
80: $val = $this->$m();
81: return $val;
82: }