mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-09-08 12:32:42 +00:00
Merge branch 'master' into 2.5
Conflicts: lib/Cake/VERSION.txt
This commit is contained in:
commit
a7a6fcae8a
55 changed files with 177 additions and 119 deletions
|
@ -243,7 +243,7 @@ class Dispatcher implements CakeEventListener {
|
|||
* Load controller and return controller classname
|
||||
*
|
||||
* @param CakeRequest $request
|
||||
* @return string|bool Name of controller class name
|
||||
* @return string|boolean Name of controller class name
|
||||
*/
|
||||
protected function _loadController($request) {
|
||||
$pluginName = $pluginPath = $controller = null;
|
||||
|
|
|
@ -31,7 +31,7 @@ abstract class DispatcherFilter implements CakeEventListener {
|
|||
/**
|
||||
* Default priority for all methods in this filter
|
||||
*
|
||||
* @var int
|
||||
* @var integer
|
||||
*/
|
||||
public $priority = 10;
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ class AssetDispatcher extends DispatcherFilter {
|
|||
* Default priority for all methods in this filter
|
||||
* This filter should run before the request gets parsed by router
|
||||
*
|
||||
* @var int
|
||||
* @var integer
|
||||
*/
|
||||
public $priority = 9;
|
||||
|
||||
|
|
|
@ -27,7 +27,7 @@ class CacheDispatcher extends DispatcherFilter {
|
|||
* Default priority for all methods in this filter
|
||||
* This filter should run before the request gets parsed by router
|
||||
*
|
||||
* @var int
|
||||
* @var integer
|
||||
*/
|
||||
public $priority = 9;
|
||||
|
||||
|
|
|
@ -784,7 +784,7 @@ class Router {
|
|||
* or an array specifying any of the following: 'controller', 'action',
|
||||
* and/or 'plugin', in addition to named arguments (keyed array elements),
|
||||
* and standard URL arguments (indexed array elements)
|
||||
* @param bool|array $full If (bool) true, the full base URL will be prepended to the result.
|
||||
* @param boolean|array $full If (bool) true, the full base URL will be prepended to the result.
|
||||
* If an array accepts the following keys
|
||||
* - escape - used when making URLs embedded in html escapes query string '&'
|
||||
* - full - if true the full base URL will be prepended.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue