Skip to content

Commit 2f02467

Browse files
committed
fix(container): add docs for tempestphp/tempest-framework#1090 lazy injection
1 parent 46de63a commit 2f02467

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

src/Web/Documentation/content/main/1-essentials/01-container.md

+19
Original file line numberDiff line numberDiff line change
@@ -379,3 +379,22 @@ class MyCommand
379379
```
380380

381381
For these edge cases, it's nicer to make the trait self-contained without having to rely on constructor injection. That's why injected properties are supported.
382+
383+
## Lazy loading
384+
The container supports lazy loading of dependencies using the `#[Lazy]` attribute. Using this attribute on a property (that has `#[Inject]`) or a constructor parameter
385+
will allow the container to instead inject a lazy proxy.
386+
Since lazy proxies are transparent to the consumer you do not need to change anything else in your code.
387+
The primary use case for this are heavy dependencies that may or may not be used.
388+
389+
```php
390+
// app/BookController.php
391+
392+
use Tempest\Container\Tag;
393+
394+
final readonly class BookController
395+
{
396+
public function __constructor(
397+
#[Lazy] VerySlowClass $verySlowClass
398+
) { /* … */ }
399+
}
400+
```

0 commit comments

Comments
 (0)