diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-01-24 13:13:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-24 13:13:20 +0100 |
commit | 4c566f7498450a1e087ce1c89f32844cee683645 (patch) | |
tree | dd25142c58e857046e33ae1b55ce53b4868ce13c /lib | |
parent | 2168e0ad89c0cb6436b5a7bf1949e938a96249be (diff) | |
parent | e4453c4c608279e8af969e7b9eadcfb53c29df67 (diff) | |
download | nextcloud-server-4c566f7498450a1e087ce1c89f32844cee683645.tar.gz nextcloud-server-4c566f7498450a1e087ce1c89f32844cee683645.zip |
Merge pull request #19100 from nextcloud/refactor/leafo-to-scssphp
Migrate leafo/scssphp to scssphp/scssphp
Diffstat (limited to 'lib')
-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 */ |