From 3da51d2074e345ca0cfc261259547a8409c5e5b4 Mon Sep 17 00:00:00 2001 From: Thomas Schulz Date: Fri, 8 Mar 2019 13:03:05 +0100 Subject: [PATCH] Fixed typo for some argumentsSet calls --- Symfony/Component/HttpFoundation/.phpstorm.meta.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Symfony/Component/HttpFoundation/.phpstorm.meta.php b/Symfony/Component/HttpFoundation/.phpstorm.meta.php index af24912..cef2d8d 100644 --- a/Symfony/Component/HttpFoundation/.phpstorm.meta.php +++ b/Symfony/Component/HttpFoundation/.phpstorm.meta.php @@ -69,16 +69,16 @@ expectedReturnValues(\Symfony\Component\HttpFoundation\Request::getMimeType(), argumentsSet('symfony_request_mimes')); registerArgumentsSet('symfony_http_protocols', 'https', 'http'); - expectedReturnValues(\Symfony\Component\HttpFoundation\Request::getScheme(), argumentsSets('symfony_http_protocols')); - expectedArguments(\Symfony\Component\HttpFoundation\RequestMatcher::matchScheme(), 0, argumentsSets('symfony_http_protocols')); - expectedArguments(\Symfony\Component\Routing\RequestContext::__construct(), 3, argumentsSets('symfony_http_protocols')); + expectedReturnValues(\Symfony\Component\HttpFoundation\Request::getScheme(), argumentsSet('symfony_http_protocols')); + expectedArguments(\Symfony\Component\HttpFoundation\RequestMatcher::matchScheme(), 0, argumentsSet('symfony_http_protocols')); + expectedArguments(\Symfony\Component\Routing\RequestContext::__construct(), 3, argumentsSet('symfony_http_protocols')); expectedArguments(\Symfony\Component\Routing\RequestContext::setScheme(), 0, argumentsSet('symfony_http_protocols')); expectedReturnValues(\Symfony\Component\Routing\RequestContext::getScheme(), argumentsSet('symfony_http_protocols')); expectedArguments(\Symfony\Component\Routing\Route::hasScheme(), 0, argumentsSet('symfony_http_protocols')); expectedArguments(\Symfony\Bundle\FrameworkBundle\Routing\RedirectableUrlMatcher::redirect(), 2, argumentsSet('symfony_http_protocols')); registerArgumentsSet('symfony_ports_http_https', 80, 443, 8080, 8081, 8090, 8008, 3128); - expectedReturnValues(\Symfony\Component\HttpFoundation\Request::getPort(), argumentsSets('symfony_ports_http_https')); + expectedReturnValues(\Symfony\Component\HttpFoundation\Request::getPort(), argumentsSet('symfony_ports_http_https')); registerArgumentsSet('symfony_ports_http', 80, 8080, 8081, 8090, 8008, 3128); expectedArguments(\Symfony\Component\Routing\RequestContext::__construct(), 4, argumentsSet('symfony_ports_http'));