From fec66e61c8d477203f3dbff66341b9a7bb06ea14 Mon Sep 17 00:00:00 2001 From: Ivan Kurnosov Date: Tue, 12 Jan 2021 14:21:27 +1300 Subject: [PATCH] [Config] Add \Symfony\Component\Config\Loader::load() return type --- src/Symfony/Component/Config/Loader/LoaderInterface.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Symfony/Component/Config/Loader/LoaderInterface.php b/src/Symfony/Component/Config/Loader/LoaderInterface.php index dfca9dd27b..130296ea0a 100644 --- a/src/Symfony/Component/Config/Loader/LoaderInterface.php +++ b/src/Symfony/Component/Config/Loader/LoaderInterface.php @@ -24,6 +24,8 @@ interface LoaderInterface * @param mixed $resource The resource * @param string|null $type The resource type or null if unknown * + * @return mixed + * * @throws \Exception If something went wrong */ public function load($resource, $type = null);