Example #1
0
 public function __construct($todoListID, $description)
 {
     parent::__construct($todoListID);
     $this->description = $description;
 }
Example #2
0
 public function __construct($todoListID, $taskID)
 {
     $this->taskID = (int) $taskID;
     parent::__construct($todoListID);
 }