get() public method

Retrieves one task from the database.
public get ( string $taskId ) : Nag_Task
$taskId string The id of the task to retrieve.
return Nag_Task A Nag_Task object.
Ejemplo n.º 1
0
 public function get($taskId)
 {
     return $this->_driver->get($taskId);
 }