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](editor://open/?file=....vendor%5Cnette%5Capplication%5Csrc%5CApplication%5CUI%5CPresenter.php&line=1415&search=&replace=)() 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: }