Example #1
0
 /**
  * Return the name of this file
  *
  * @return string
  */
 public function getName()
 {
     if (!isset($this->name)) {
         $this->assertRepoDefined();
         $this->name = $this->repo->getNameFromTitle($this->title);
     }
     return $this->name;
 }