この機能を持つファイルが50個あります
public function __construct()
{ $this->createdAt = new DateTime();
$this->updatedAt = new DateTime();
$this->isActive = true;
$this->isDeleted = false;
}
sedやawkを使用して、または可能な方法で、すべてのファイルの関数内にこれらの行を追加できる方法はありますか?
file.phpが
public function __construct()
{
$this->age = 20;
}
こんな感じになりたい
public function __construct()
{
$this->age = 20;
$this->createdAt = new DateTime();
$this->updatedAt = new DateTime();
$this->isActive = true;
$this->isDeleted = false;
}