-
Notifications
You must be signed in to change notification settings - Fork 26
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
env
- ubuntu 20.04
- vscode 1.88.1
- php 7.4.3
- phptools v1.50.15906
why $subjects = join(" ", $subject); become $subjects ?
before phptools
public function getNoticeTitle()
{
list(
'studentGrade' => $studentGrade,
'subject' => $subject,
'region' => $region,
'lessonDuration' => $lessonDuration,
'feeDeal' => $feeDeal,
) = $this->getPublicInfo();
$subjects = join(" ", $subject);
return "[{$studentGrade} {$subjects} (HK\${$feeDeal} | {$lessonDuration}) {$region}]";
}after phptools
public function getNoticeTitle()
{,
list(
'studentGrade' => $studentGrade,
'subject' => $subject,
'region' => $region,
'lessonDuration' => $lessonDuration,
'feeDeal' => $feeDeal,
) = $this->getPublicInfo();
$subjects = join(" ", $subject);
return "[{$studentGrade} {$subjects} (HK\${$feeDeal} | {$lessonDuration}) {$region}]";
}Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working
Type
Projects
Status
Done
