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";
__toString()
This function will be needed to write the category back to the less file and restore it's initial str...
Capsules data of a less category in the variables to less file.
__construct(string $name, string $comment='')
string $comment
Comment to describe what this category is about.
string $name
Name of the category.
setComment(string $comment)
Abstracts content of a less file.