@@ -68,7 +68,7 @@ |
||
| 68 | 68 | { |
| 69 | 69 | return new Migrations( |
| 70 | 70 | $container->get('db'), |
| 71 | - new Filesystem(new Local(APPROOT . '/etc')) |
|
| 71 | + new Filesystem(new Local(APPROOT.'/etc')) |
|
| 72 | 72 | ); |
| 73 | 73 | } |
| 74 | 74 | } |
@@ -32,7 +32,7 @@ discard block |
||
| 32 | 32 | ->alias(AbstractCacheItemPool::class, PsrCacheItemPoolInterface::class) |
| 33 | 33 | ->share( |
| 34 | 34 | PsrCacheItemPoolInterface::class, |
| 35 | - function (Container $container) |
|
| 35 | + function(Container $container) |
|
| 36 | 36 | { |
| 37 | 37 | /** @var \Joomla\Registry\Registry $config */ |
| 38 | 38 | $config = $container->get('config'); |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | // If the path is relative, make it absolute... Sorry Windows users, this breaks support for your environment |
| 60 | 60 | if (substr($path, 0, 1) !== '/') |
| 61 | 61 | { |
| 62 | - $path = JPATH_ROOT . '/' . $path; |
|
| 62 | + $path = JPATH_ROOT.'/'.$path; |
|
| 63 | 63 | } |
| 64 | 64 | |
| 65 | 65 | $options = [ |