Skip to content

Commit

Permalink
Merge pull request #12739 from cakephp/bugfix/docblocks
Browse files Browse the repository at this point in the history
Fix docblocks
  • Loading branch information
markstory committed Nov 19, 2018
2 parents 7b985d5 + abbdf03 commit 15a8a3e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Routing/Middleware/RoutingMiddleware.php
Expand Up @@ -39,22 +39,22 @@ class RoutingMiddleware
/**
* The application that will have its routing hook invoked.
*
* @var \Cake\Http\BaseApplication
* @var \Cake\Http\BaseApplication|null
*/
protected $app;

/**
* The cache configuration name to use for route collection caching,
* null to disable caching
*
* @var string
* @var string|null
*/
protected $cacheConfig;

/**
* Constructor
*
* @param \Cake\Http\BaseApplication $app The application instance that routes are defined on.
* @param \Cake\Http\BaseApplication|null $app The application instance that routes are defined on.
* @param string|null $cacheConfig The cache config name to use or null to disable routes cache
*/
public function __construct(BaseApplication $app = null, $cacheConfig = null)
Expand Down

0 comments on commit 15a8a3e

Please sign in to comment.