Studio\Package::getPath PHP Method

getPath() public method

public getPath ( )
    public function getPath()
    {
        return $this->path;
    }

Usage Example

Example #1
0
 public function removePackage(Package $package)
 {
     // Ensure paths are loaded
     $this->getPaths();
     $path = $package->getPath();
     if (($key = array_search($path, $this->paths)) !== false) {
         unset($this->paths[$key]);
         $this->dump();
     }
 }
All Usage Examples Of Studio\Package::getPath