Puli\Manager\Api\Repository\PathMapping::getRepositoryPath PHP Method

getRepositoryPath() public method

Returns the repository path.
public getRepositoryPath ( ) : string
return 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