Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix PHPDocs for Router #3290

Merged
merged 1 commit into from
Jul 12, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 43 additions & 2 deletions system/Router/Exceptions/RedirectException.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,53 @@
<?php

/**
* CodeIgniter
*
* An open source application development framework for PHP
*
* This content is released under the MIT License (MIT)
*
* Copyright (c) 2014-2019 British Columbia Institute of Technology
* Copyright (c) 2019-2020 CodeIgniter Foundation
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*
* @package CodeIgniter
* @author CodeIgniter Dev Team
* @copyright 2019-2020 CodeIgniter Foundation
* @license https://opensource.org/licenses/MIT MIT License
* @link https://codeigniter.com
* @since Version 4.0.0
* @filesource
*/

namespace CodeIgniter\Router\Exceptions;

/**
* Redirect exception
* RedirectException
*/

class RedirectException extends \Exception
{
/**
* Status code for redirects
*
* @var integer
*/
protected $code = 302;
}
55 changes: 54 additions & 1 deletion system/Router/Exceptions/RouterException.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,68 @@
<?php namespace CodeIgniter\Router\Exceptions;
<?php

/**
* CodeIgniter
*
* An open source application development framework for PHP
*
* This content is released under the MIT License (MIT)
*
* Copyright (c) 2014-2019 British Columbia Institute of Technology
* Copyright (c) 2019-2020 CodeIgniter Foundation
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*
* @package CodeIgniter
* @author CodeIgniter Dev Team
* @copyright 2019-2020 CodeIgniter Foundation
* @license https://opensource.org/licenses/MIT MIT License
* @link https://codeigniter.com
* @since Version 4.0.0
* @filesource
*/

namespace CodeIgniter\Router\Exceptions;

use CodeIgniter\Exceptions\ExceptionInterface;
use CodeIgniter\Exceptions\FrameworkException;

/**
* RouterException
*/
class RouterException extends FrameworkException implements ExceptionInterface
{
/**
* Thrown when the actual parameter type does not match
* the expected types.
*
* @return \CodeIgniter\Router\Exceptions\RouterException
*/
public static function forInvalidParameterType()
{
return new static(lang('Router.invalidParameterType'));
}

/**
* Thrown when a default route is not set.
*
* @return \CodeIgniter\Router\Exceptions\RouterException
*/
public static function forMissingDefaultRoute()
{
return new static(lang('Router.missingDefaultRoute'));
Expand Down
54 changes: 29 additions & 25 deletions system/Router/RouteCollection.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/**
* CodeIgniter
*
Expand Down Expand Up @@ -229,8 +230,8 @@ class RouteCollection implements RouteCollectionInterface
/**
* Constructor
*
* @param FileLocator $locator
* @param \Config\Modules $moduleConfig
* @param \CodeIgniter\Autoloader\FileLocator $locator
* @param \Config\Modules $moduleConfig
*/
public function __construct(FileLocator $locator, $moduleConfig)
{
Expand Down Expand Up @@ -271,7 +272,7 @@ public function addPlaceholder($placeholder, string $pattern = null): RouteColle
* Sets the default namespace to use for Controllers when no other
* namespace has been specified.
*
* @param $value
* @param string $value
*
* @return \CodeIgniter\Router\RouteCollectionInterface
*/
Expand All @@ -289,7 +290,7 @@ public function setDefaultNamespace(string $value): RouteCollectionInterface
* Sets the default controller to use when no other controller has been
* specified.
*
* @param $value
* @param string $value
*
* @return \CodeIgniter\Router\RouteCollectionInterface
*/
Expand All @@ -306,7 +307,7 @@ public function setDefaultController(string $value): RouteCollectionInterface
* Sets the default method to call on the controller when no other
* method has been set in the route.
*
* @param $value
* @param string $value
*
* @return \CodeIgniter\Router\RouteCollectionInterface
*/
Expand Down Expand Up @@ -622,7 +623,7 @@ public function map(array $routes = [], array $options = null): RouteCollectionI
*
* @param string $from
* @param array|string $to
* @param array $options
* @param array|null $options
*
* @return RouteCollectionInterface
*/
Expand Down Expand Up @@ -653,7 +654,7 @@ public function addRedirect(string $from, string $to, int $status = 302)
{
$to = $this->routes['*'][$to]['route'];
}
else if (array_key_exists($to, $this->routes['get']))
elseif (array_key_exists($to, $this->routes['get']))
{
$to = $this->routes['get'][$to]['route'];
}
Expand Down Expand Up @@ -724,8 +725,8 @@ public function getRedirectCode(string $from): int
* $route->resource('users');
* });
*
* @param string $name The name to group/prefix the routes with.
* @param $params
* @param string $name The name to group/prefix the routes with.
* @param array ...$params
*
* @return void
*/
Expand Down Expand Up @@ -795,8 +796,8 @@ public function group(string $name, ...$params)
* POST /photos/{id}/delete delete
* POST /photos/{id} update
*
* @param string $name The name of the resource/controller to route to.
* @param array $options An list of possible ways to customize the routing.
* @param string $name The name of the resource/controller to route to.
* @param array|null $options An list of possible ways to customize the routing.
*
* @return RouteCollectionInterface
*/
Expand Down Expand Up @@ -909,8 +910,8 @@ public function resource(string $name, array $options = null): RouteCollectionIn
* GET /photos/remove/{id} remove show a form to confirm deletion of a specific photo object
* POST /photos/delete/{id} delete deleting the specified photo object
*
* @param string $name The name of the controller to route to.
* @param array $options An list of possible ways to customize the routing.
* @param string $name The name of the controller to route to.
* @param array|null $options An list of possible ways to customize the routing.
*
* @return RouteCollectionInterface
*/
Expand Down Expand Up @@ -1009,7 +1010,7 @@ public function presenter(string $name, array $options = null): RouteCollectionI
* @param array $verbs
* @param string $from
* @param string|array $to
* @param array $options
* @param array|null $options
*
* @return \CodeIgniter\Router\RouteCollectionInterface
*/
Expand All @@ -1032,7 +1033,7 @@ public function match(array $verbs = [], string $from, $to, array $options = nul
*
* @param string $from
* @param string|array $to
* @param array $options
* @param array|null $options
*
* @return \CodeIgniter\Router\RouteCollectionInterface
*/
Expand All @@ -1050,7 +1051,7 @@ public function get(string $from, $to, array $options = null): RouteCollectionIn
*
* @param string $from
* @param string|array $to
* @param array $options
* @param array|null $options
*
* @return \CodeIgniter\Router\RouteCollectionInterface
*/
Expand All @@ -1068,7 +1069,7 @@ public function post(string $from, $to, array $options = null): RouteCollectionI
*
* @param string $from
* @param string|array $to
* @param array $options
* @param array|null $options
*
* @return \CodeIgniter\Router\RouteCollectionInterface
*/
Expand All @@ -1086,7 +1087,7 @@ public function put(string $from, $to, array $options = null): RouteCollectionIn
*
* @param string $from
* @param string|array $to
* @param array $options
* @param array|null $options
*
* @return \CodeIgniter\Router\RouteCollectionInterface
*/
Expand All @@ -1104,7 +1105,7 @@ public function delete(string $from, $to, array $options = null): RouteCollectio
*
* @param string $from
* @param string|array $to
* @param array $options
* @param array|null $options
*
* @return \CodeIgniter\Router\RouteCollectionInterface
*/
Expand All @@ -1122,7 +1123,7 @@ public function head(string $from, $to, array $options = null): RouteCollectionI
*
* @param string $from
* @param string|array $to
* @param array $options
* @param array|null $options
*
* @return \CodeIgniter\Router\RouteCollectionInterface
*/
Expand All @@ -1140,7 +1141,7 @@ public function patch(string $from, $to, array $options = null): RouteCollection
*
* @param string $from
* @param string|array $to
* @param array $options
* @param array|null $options
*
* @return \CodeIgniter\Router\RouteCollectionInterface
*/
Expand All @@ -1158,7 +1159,7 @@ public function options(string $from, $to, array $options = null): RouteCollecti
*
* @param string $from
* @param string|array $to
* @param array $options
* @param array|null $options
*
* @return \CodeIgniter\Router\RouteCollectionInterface
*/
Expand All @@ -1177,7 +1178,7 @@ public function cli(string $from, $to, array $options = null): RouteCollectionIn
* @param string $env
* @param \Closure $callback
*
* @return RouteCollectionInterface
* @return \CodeIgniter\Router\RouteCollectionInterface
*/
public function environment(string $env, \Closure $callback): RouteCollectionInterface
{
Expand All @@ -1192,7 +1193,7 @@ public function environment(string $env, \Closure $callback): RouteCollectionInt
//--------------------------------------------------------------------

/**
* Attempts to look up a route based on it's destination.
* Attempts to look up a route based on its destination.
*
* If a route exists:
*
Expand Down Expand Up @@ -1327,6 +1328,7 @@ public function getFilterForRoute(string $search): string
* @param array|null $params
*
* @return string
* @throws \CodeIgniter\Router\Exceptions\RouterException
*/
protected function fillRouteParams(string $from, array $params = null): string
{
Expand Down Expand Up @@ -1369,7 +1371,7 @@ protected function fillRouteParams(string $from, array $params = null): string
* @param string $verb
* @param string $from
* @param string|array $to
* @param array $options
* @param array|null $options
*/
protected function create(string $verb, string $from, $to, array $options = null)
{
Expand Down Expand Up @@ -1526,6 +1528,8 @@ private function checkSubdomains($subdomains): bool
*
* It's especially not perfect since it's possible to register a domain
* with a period (.) as part of the domain name.
*
* @return mixed
*/
private function determineCurrentSubdomain()
{
Expand Down