Puli\Manager\Api\Repository\PathMapping::getRepositoryPath PHP 메소드

getRepositoryPath() 공개 메소드

Returns the repository path.
public getRepositoryPath ( ) : string
리턴 string The repository path.
    public function getRepositoryPath()
    {
        return $this->repositoryPath;
    }

Usage Example

 /**
  * {@inheritdoc}
  */
 public function rollback()
 {
     if ($this->previousMapping) {
         $this->rootPackageFile->addPathMapping($this->previousMapping);
     } else {
         $this->rootPackageFile->removePathMapping($this->mapping->getRepositoryPath());
     }
 }
All Usage Examples Of Puli\Manager\Api\Repository\PathMapping::getRepositoryPath