From d09e7c8f64fc1982b0f0f77e95620c6d5a0b0f1f Mon Sep 17 00:00:00 2001 From: ThomasLandauer Date: Wed, 16 Dec 2020 18:29:52 +0100 Subject: [PATCH] Adding some typehint --- src/Codeception/Module/Symfony.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Codeception/Module/Symfony.php b/src/Codeception/Module/Symfony.php index 7fcaa285..a5e5fb16 100644 --- a/src/Codeception/Module/Symfony.php +++ b/src/Codeception/Module/Symfony.php @@ -534,11 +534,11 @@ public function dontSeeEmailIsSent() * ?> * ``` * - * @param $service + * @param string $service * @return mixed * @part services */ - public function grabService($service) + public function grabService(string $service) { $container = $this->_getContainer(); if (!$container->has($service)) {