/**
  * Create a temporary directory
  *
  * @see http://php.net/tempnam
  *
  * @return string Path to the new directory
  */
 protected function tempdir($tmp_dir, $project_identifier)
 {
     return parent::tempdir($tmp_dir, self::RESOURCE_NAME, $project_identifier);
 }
 /**
  * Create a temporary directory
  *
  * @see http://php.net/tempnam
  *
  * @return string Path to the new directory
  */
 protected function tempdir($tmp_dir, $tracker_id)
 {
     return parent::tempdir($tmp_dir, self::RESOURCE_NAME, $tracker_id);
 }