Skip to content

Commit

Permalink
Fix docblocks
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Nov 18, 2018
1 parent 7b985d5 commit abbdf03
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 abbdf03

Please sign in to comment.