Skip to content

Commit

Permalink
[TASK] Update bundled scssphp to 1.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminkott committed Oct 8, 2024
1 parent 2603055 commit 87cc012
Show file tree
Hide file tree
Showing 16 changed files with 280 additions and 84 deletions.
Empty file modified Contrib/scssphp/bin/pscss
100755 → 100644
Empty file.
2 changes: 1 addition & 1 deletion Contrib/scssphp/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"thoughtbot/bourbon": "^7.0",
"twbs/bootstrap": "~5.0",
"twbs/bootstrap4": "4.6.1",
"zurb/foundation": "~6.5"
"zurb/foundation": "~6.7.0"
},
"repositories": [
{
Expand Down
3 changes: 2 additions & 1 deletion Contrib/scssphp/src/Block/CallableBlock.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

use ScssPhp\ScssPhp\Block;
use ScssPhp\ScssPhp\Compiler\Environment;
use ScssPhp\ScssPhp\Node\Number;

/**
* @internal
Expand All @@ -26,7 +27,7 @@ class CallableBlock extends Block
public $name;

/**
* @var array|null
* @var list<array{string, array|Number|null, bool}>|null
*/
public $args;

Expand Down
3 changes: 2 additions & 1 deletion Contrib/scssphp/src/Block/DirectiveBlock.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
namespace ScssPhp\ScssPhp\Block;

use ScssPhp\ScssPhp\Block;
use ScssPhp\ScssPhp\Node\Number;
use ScssPhp\ScssPhp\Type;

/**
Expand All @@ -26,7 +27,7 @@ class DirectiveBlock extends Block
public $name;

/**
* @var string|array|null
* @var array|Number|null
*/
public $value;

Expand Down
3 changes: 2 additions & 1 deletion Contrib/scssphp/src/Block/EachBlock.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
namespace ScssPhp\ScssPhp\Block;

use ScssPhp\ScssPhp\Block;
use ScssPhp\ScssPhp\Node\Number;
use ScssPhp\ScssPhp\Type;

/**
Expand All @@ -26,7 +27,7 @@ class EachBlock extends Block
public $vars = [];

/**
* @var array
* @var array|Number
*/
public $list;

Expand Down
3 changes: 2 additions & 1 deletion Contrib/scssphp/src/Block/ElseifBlock.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
namespace ScssPhp\ScssPhp\Block;

use ScssPhp\ScssPhp\Block;
use ScssPhp\ScssPhp\Node\Number;
use ScssPhp\ScssPhp\Type;

/**
Expand All @@ -21,7 +22,7 @@
class ElseifBlock extends Block
{
/**
* @var array
* @var array|Number
*/
public $cond;

Expand Down
5 changes: 3 additions & 2 deletions Contrib/scssphp/src/Block/ForBlock.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
namespace ScssPhp\ScssPhp\Block;

use ScssPhp\ScssPhp\Block;
use ScssPhp\ScssPhp\Node\Number;
use ScssPhp\ScssPhp\Type;

/**
Expand All @@ -26,12 +27,12 @@ class ForBlock extends Block
public $var;

/**
* @var array
* @var array|Number
*/
public $start;

/**
* @var array
* @var array|Number
*/
public $end;

Expand Down
3 changes: 2 additions & 1 deletion Contrib/scssphp/src/Block/IfBlock.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
namespace ScssPhp\ScssPhp\Block;

use ScssPhp\ScssPhp\Block;
use ScssPhp\ScssPhp\Node\Number;
use ScssPhp\ScssPhp\Type;

/**
Expand All @@ -21,7 +22,7 @@
class IfBlock extends Block
{
/**
* @var array
* @var array|Number
*/
public $cond;

Expand Down
3 changes: 2 additions & 1 deletion Contrib/scssphp/src/Block/MediaBlock.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
namespace ScssPhp\ScssPhp\Block;

use ScssPhp\ScssPhp\Block;
use ScssPhp\ScssPhp\Node\Number;
use ScssPhp\ScssPhp\Type;

/**
Expand All @@ -21,7 +22,7 @@
class MediaBlock extends Block
{
/**
* @var string|array|null
* @var string|array|Number|null
*/
public $value;

Expand Down
Loading

0 comments on commit 87cc012

Please sign in to comment.