lithium\net\http\Route::canContinue()
Returns a boolean value indicating whether this is a continuation route. If true, this
route will allow incoming requests to "fall through" to other routes, aggregating parameters
for both this route and any subsequent routes.
Returns
booleanReturns the value of $_config['continue'].
Source
public function canContinue() {
return $this->_config['continue'];
}