/**
  * Constructs a new Tracker instance for PivotalTracker.
  *
  * @param string $username
  * @param string $password
  * @param integer $project
  */
 public function __construct($username, $password, $project)
 {
     $this->pivotal = new Client($project);
     $this->pivotal->authenticate($username, $password);
 }