mirror of
https://github.com/gtbu/Typesetter-5.3-p8.git
synced 2024-11-21 21:59:12 +01:00
Bool-error
This commit is contained in:
parent
3a27431ef1
commit
ae49cfbc89
1 changed files with 2 additions and 2 deletions
|
@ -57,8 +57,8 @@ class Css{
|
|||
$temp_sourcemap_name = $parsed_data[1];
|
||||
}else{
|
||||
$parsed_data = self::ParseScss($file_array);
|
||||
$compiled = $parsed_data[0];
|
||||
$temp_sourcemap_name = $parsed_data[1];
|
||||
$compiled = $parsed_data[0] ?? 'default value'; /* ??= 'default value'; */
|
||||
$temp_sourcemap_name = $parsed_data[1] ?? 'default value';
|
||||
}
|
||||
|
||||
if( !$compiled ){
|
||||
|
|
Loading…
Reference in a new issue