We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3edfe5 commit 630a63bCopy full SHA for 630a63b
readme.md
@@ -177,7 +177,7 @@ $container = new $class;
177
and then use container to create object `NewsletterManager` and we can send e-mails:
178
179
```php
180
-$manager = $container->getByType('NewsletterManager');
+$manager = $container->getByType(NewsletterManager::class);
181
$manager->distribute(['[email protected]', ...]);
182
```
183
0 commit comments