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

isLoaded() public method

Returns whether the mapping is loaded.
public isLoaded ( ) : boolean
return boolean Returns `true` if {@link load()} was called.
    public function isLoaded()
    {
        return null !== $this->state;
    }

Usage Example

Ejemplo n.º 1
0
 /**
  * {@inheritdoc}
  */
 public function rollback()
 {
     if (!$this->mapping->isLoaded()) {
         return;
     }
     $packageName = $this->containingPackage->getName();
     $this->mappings->remove($this->mapping->getRepositoryPath(), $packageName);
     foreach ($this->mapping->listRepositoryPaths() as $repositoryPath) {
         $this->mappingsByResource->remove($repositoryPath, $packageName);
         $this->conflictDetector->release($repositoryPath, $packageName);
     }
     // Unload after iterating, otherwise the paths are gone
     $this->mapping->unload();
 }
All Usage Examples Of Puli\Manager\Api\Repository\PathMapping::isLoaded