Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/lookup-server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'server/vendor/slim/slim/Slim/Interfaces/InvocationStrategyInterface.php')
-rw-r--r--server/vendor/slim/slim/Slim/Interfaces/InvocationStrategyInterface.php35
1 files changed, 0 insertions, 35 deletions
diff --git a/server/vendor/slim/slim/Slim/Interfaces/InvocationStrategyInterface.php b/server/vendor/slim/slim/Slim/Interfaces/InvocationStrategyInterface.php
deleted file mode 100644
index 14a92c1..0000000
--- a/server/vendor/slim/slim/Slim/Interfaces/InvocationStrategyInterface.php
+++ /dev/null
@@ -1,35 +0,0 @@
-<?php
-/**
- * Slim Framework (https://slimframework.com)
- *
- * @link https://github.com/slimphp/Slim
- * @copyright Copyright (c) 2011-2017 Josh Lockhart
- * @license https://github.com/slimphp/Slim/blob/3.x/LICENSE.md (MIT License)
- */
-namespace Slim\Interfaces;
-
-use Psr\Http\Message\ResponseInterface;
-use Psr\Http\Message\ServerRequestInterface;
-
-/**
- * Defines a contract for invoking a route callable.
- */
-interface InvocationStrategyInterface
-{
- /**
- * Invoke a route callable.
- *
- * @param callable $callable The callable to invoke using the strategy.
- * @param ServerRequestInterface $request The request object.
- * @param ResponseInterface $response The response object.
- * @param array $routeArguments The route's placholder arguments
- *
- * @return ResponseInterface|string The response from the callable.
- */
- public function __invoke(
- callable $callable,
- ServerRequestInterface $request,
- ResponseInterface $response,
- array $routeArguments
- );
-}