diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-01-23 14:52:16 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-01-23 14:52:16 +0100 |
commit | 30d985b639b2def47ace858e00c1bb6a44e9d682 (patch) | |
tree | 1b5001328d19238b32dcdf68b90931bdf117cb79 /lib/private | |
parent | 2f27f122e167f27f1b09c3a4c9b70754ab953e88 (diff) | |
download | nextcloud-server-30d985b639b2def47ace858e00c1bb6a44e9d682.tar.gz nextcloud-server-30d985b639b2def47ace858e00c1bb6a44e9d682.zip |
Migrate leafo/scssphp to scssphp/scssphp
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/Template/SCSSCacher.php | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/lib/private/Template/SCSSCacher.php b/lib/private/Template/SCSSCacher.php index 2f01a60ffb8..f571967ea1c 100644 --- a/lib/private/Template/SCSSCacher.php +++ b/lib/private/Template/SCSSCacher.php @@ -29,13 +29,8 @@ namespace OC\Template; -use Leafo\ScssPhp\Compiler; -use Leafo\ScssPhp\Exception\ParserException; -use Leafo\ScssPhp\Formatter\Crunched; -use Leafo\ScssPhp\Formatter\Expanded; use OC\Files\AppData\Factory; use OC\Memcache\NullCache; -use OC\Template\IconsCacher; use OCP\AppFramework\Utility\ITimeFactory; use OCP\Files\IAppData; use OCP\Files\NotFoundException; @@ -48,6 +43,10 @@ use OCP\IConfig; use OCP\ILogger; use OCP\IMemcache; use OCP\IURLGenerator; +use ScssPhp\ScssPhp\Compiler; +use ScssPhp\ScssPhp\Exception\ParserException; +use ScssPhp\ScssPhp\Formatter\Crunched; +use ScssPhp\ScssPhp\Formatter\Expanded; class SCSSCacher { @@ -499,7 +498,7 @@ class SCSSCacher { } /** - * Add the icons css cache in the header if needed + * Add the icons css cache in the header if needed * * @return boolean true */ |