From eabb1b1c713b573a5b6157d5f91f5d55d31314a7 Mon Sep 17 00:00:00 2001 From: Adrian Suter Date: Mon, 11 Nov 2019 09:21:36 +0100 Subject: [PATCH] Remove phpdoc inheritdoc override --- Slim/Http/Environment.php | 1 - Slim/Interfaces/Http/EnvironmentInterface.php | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Slim/Http/Environment.php b/Slim/Http/Environment.php index 172f23d35..11089d98e 100644 --- a/Slim/Http/Environment.php +++ b/Slim/Http/Environment.php @@ -19,7 +19,6 @@ class Environment extends Collection implements EnvironmentInterface { /** * {@inheritdoc} - * @return self */ public static function mock(array $settings = []) { diff --git a/Slim/Interfaces/Http/EnvironmentInterface.php b/Slim/Interfaces/Http/EnvironmentInterface.php index 3a6d99cc4..49eae5b60 100644 --- a/Slim/Interfaces/Http/EnvironmentInterface.php +++ b/Slim/Interfaces/Http/EnvironmentInterface.php @@ -14,7 +14,7 @@ interface EnvironmentInterface * * @param array $settings Array of custom environment keys and values * - * @return EnvironmentInterface + * @return static */ public static function mock(array $settings = []); }