19 declare(strict_types=1);
    40     public function __construct(
string $name, 
string $comment = 
'')
    51     public function setName(
string $name): void
    53         $name = str_replace(PHP_EOL, 
'', $name);
    54         $this->name = str_replace(
"\n", 
'', $name);
    64         $comment = str_replace(PHP_EOL, 
'', $comment);
    65         $this->
comment = str_replace(
"\n", 
'', $comment);
    77             return '//== ' . $this->
getName() . 
"\n//\n//##\n";
 setComment(string $comment)
 
Abstracts content of a scss file. 
 
string $name
Name of the category. 
 
__toString()
This function will be needed to write the category back to the Scss file and restore it's initial str...
 
Capsules data of a Scss category in the variables to Scss file. 
 
__construct(string $name, string $comment='')
 
string $comment
Comment to describe what this category is about.