コード例 #1
0
 public function __construct($todoListID, $description)
 {
     parent::__construct($todoListID);
     $this->description = $description;
 }
コード例 #2
0
ファイル: TaskRequest.php プロジェクト: roman-movchan/todoapp
 public function __construct($todoListID, $taskID)
 {
     $this->taskID = (int) $taskID;
     parent::__construct($todoListID);
 }