mirror of
https://github.com/flarum/core.git
synced 2025-10-13 16:05:05 +02:00
Applied fixes from StyleCI
This commit is contained in:
@@ -52,7 +52,7 @@ class AbstractUrlGenerator
|
||||
$path = $this->routes->getPath($name, $parameters);
|
||||
$path = ltrim($path, '/');
|
||||
|
||||
return $this->toBase() . '/' . $path;
|
||||
return $this->toBase().'/'.$path;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -63,7 +63,7 @@ class AbstractUrlGenerator
|
||||
*/
|
||||
public function toPath($path)
|
||||
{
|
||||
return $this->toBase() . '/' . $path;
|
||||
return $this->toBase().'/'.$path;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user