yii2
yii2 copied to clipboard
Feature: DI: PHP 8.4 Lazy Objects
PHP 8.4 introduced to us Lazy Objects, it would be nice to use them in DI.
https://www.php.net/manual/en/language.oop5.lazy-objects.php
I think, using PHP 8.4's Lazy Objects will cause BC Break. using ocramius/proxy-manager is better solution for now
@agussuhartono can you make a PR?
It can be implemented without doing BC, we can create a helper like Instance::of, like Lazy::of, i have an improved Yii2 container, i have it private, and when working with lazy objects, Yii2 becomes even faster, without any BC.
@terabytesoftw any benchmarks?