32 $this->lines=\explode(
"\n", $this->originalContent);
33 foreach ($this->lines as $line){
35 $line=\preg_replace(
"@^(\*\*\/)|(\/\*\*)|(\*)|(\/)@i",
"", $line);
36 if(UString::isNotNull($line)){
38 if(UString::startswith($line,
"@")){
39 if(\preg_match(
"@^\@(.*?)\ @i", $line,$matches)){
40 $this->
addInArray($this->lines, $matches[1], \preg_replace(
"@^\@".\preg_quote($matches[1]).
"(.*?)\ @i",
"$1", $line));
43 $this->description[]=$line;
47 $this->description=\array_diff($this->description, [
"",
"/"]);