From 7ccb2a261521cc826ff41d91cebbab504b7c4e11 Mon Sep 17 00:00:00 2001 From: Mario Date: Sat, 10 Feb 2024 22:04:24 +0000 Subject: custom sass bootstrap builds for channels and site --- .../scssphp/scssphp/src/Compiler/Environment.php | 68 ++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 vendor/scssphp/scssphp/src/Compiler/Environment.php (limited to 'vendor/scssphp/scssphp/src/Compiler/Environment.php') diff --git a/vendor/scssphp/scssphp/src/Compiler/Environment.php b/vendor/scssphp/scssphp/src/Compiler/Environment.php new file mode 100644 index 000000000..b205a077f --- /dev/null +++ b/vendor/scssphp/scssphp/src/Compiler/Environment.php @@ -0,0 +1,68 @@ + + * + * @internal + */ +class Environment +{ + /** + * @var \ScssPhp\ScssPhp\Block|null + */ + public $block; + + /** + * @var \ScssPhp\ScssPhp\Compiler\Environment|null + */ + public $parent; + + /** + * @var Environment|null + */ + public $declarationScopeParent; + + /** + * @var Environment|null + */ + public $parentStore; + + /** + * @var array|null + */ + public $selectors; + + /** + * @var string|null + */ + public $marker; + + /** + * @var array + */ + public $store; + + /** + * @var array + */ + public $storeUnreduced; + + /** + * @var int + */ + public $depth; +} -- cgit v1.2.3