Scrutinizer Auto-Fixes

This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com
This commit is contained in:
Scrutinizer Auto-Fixer 2015-11-04 21:31:03 +00:00
parent a741526da1
commit 025bc4ef64
2 changed files with 2 additions and 2 deletions

View File

@ -80,7 +80,7 @@ class Controller {
*/
public function redirect_to_default()
{
$default_type = $this->config->get(['routing','default_list']);
$default_type = $this->config->get(['routing', 'default_list']);
$this->redirect($this->urlGenerator->default_url($default_type), 303);
}

View File

@ -76,7 +76,7 @@ class UrlGenerator extends RoutingBase {
$path_segments = explode('/', $path);
$segments = $this->segments();
for($i=0; $i<count($path_segments); $i++)
for ($i = 0; $i < count($path_segments); $i++)
{
if ( ! array_key_exists($i + 1, $segments))
{