diff --git a/packages/php/email-editor/src/Container.php b/packages/php/email-editor/src/Container.php index 940b38b451..a25c162de2 100644 --- a/packages/php/email-editor/src/Container.php +++ b/packages/php/email-editor/src/Container.php @@ -10,6 +10,11 @@ class Container { $this->services[$name] = $callable; } + /** + * @template T + * @param class-string $name + * @return T + */ public function get(string $name) { // Check if the service is already instantiated if (isset($this->instances[$name])) {