特徴にも記載されているDiff local and remote(ローカルとリモートの差分表示)がVSCode内でできることですね。 昔Macが32bitアプリが動く時代には、YummyFTPというアプリがあって外部アプリによる差分表示をサポートしていたのですが、作者の方がお亡くなりになったそうで64bitの対応は事実上無くなってしまったためOS Catalina以降は動作しなくなってしまいました。 なお、FTPソフトに差分表示をサポートしているものは他にもあります。
こういったFTPソフトが差分表示をサポートしている、というのは、たいていファイルを選択して差分表示と選択すると外部のDiffアプリが開くような仕様になっています。 上記のForkLiftもランディングページの説明に「Compare two text or images files with Xcode’s FileMerge, Kaleiodoscope, Beyond Compare, or Araxis Merge.」と記載されているので、 ForkLiftアプリ内で完結しているわけではなく、別のアプリが立ち上がると思われます。
// 710行目
public function getName($lastFirst = false) //この$lastFirstのtrue/falseで判定している
↓
public function getName($lastFirst = true)
// 717行目
$fullName = $lastName.', '.$firstName;
↓
$fullName = $lastName.' '.$firstName; // カンマが不要なので削除
// 754行目
public function getPrimaryIdentifier($lastFirst = false)
↓
public function getPrimaryIdentifier($lastFirst = true)
送信メールの名前
//*ファイルの場所 /app/bundles/EmailBundle/Model/EmailModel.php
// 1622行目
if (!$mailer->setTo($user['email'], $user['firstname'].' '.$user['lastname'])) {
↓
if (!$mailer->setTo($user['email'], $user['lastname'].' '.$user['firstname'])) {
// 2404行目
if (!$mailer->setTo($user['email'], $user['firstname'].' '.$user['lastname'])) {
↓
if (!$mailer->setTo($user['email'], $user['lastname'].' '.$user['firstname'])) {