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/RouteInterface.php')
-rw-r--r--server/vendor/slim/slim/Slim/Interfaces/RouteInterface.php16
1 files changed, 8 insertions, 8 deletions
diff --git a/server/vendor/slim/slim/Slim/Interfaces/RouteInterface.php b/server/vendor/slim/slim/Slim/Interfaces/RouteInterface.php
index 32d4bae..d2d0d24 100644
--- a/server/vendor/slim/slim/Slim/Interfaces/RouteInterface.php
+++ b/server/vendor/slim/slim/Slim/Interfaces/RouteInterface.php
@@ -1,9 +1,9 @@
<?php
/**
- * Slim Framework (http://slimframework.com)
+ * Slim Framework (https://slimframework.com)
*
* @link https://github.com/slimphp/Slim
- * @copyright Copyright (c) 2011-2016 Josh Lockhart
+ * @copyright Copyright (c) 2011-2017 Josh Lockhart
* @license https://github.com/slimphp/Slim/blob/3.x/LICENSE.md (MIT License)
*/
namespace Slim\Interfaces;
@@ -25,16 +25,16 @@ interface RouteInterface
* Retrieve a specific route argument
*
* @param string $name
- * @param mixed $default
+ * @param string|null $default
*
- * @return mixed
+ * @return string|null
*/
public function getArgument($name, $default = null);
/**
* Get route arguments
*
- * @return array
+ * @return string[]
*/
public function getArguments();
@@ -58,16 +58,16 @@ interface RouteInterface
* @param string $name
* @param string $value
*
- * @return static
+ * @return self
*/
public function setArgument($name, $value);
/**
* Replace route arguments
*
- * @param array $arguments
+ * @param string[] $arguments
*
- * @return static
+ * @return self
*/
public function setArguments(array $arguments);