Newscoop\Service\Template::listPaths PHP Method

listPaths() public method

.
public listPaths ( string $path )
$path string
    public function listPaths($path)
    {
        return $this->storage->listPaths($path);
    }

Usage Example

 /**
  * Get available paths starting from path
  *
  * @param string $path
  * @return array
  */
 private function getPaths($path)
 {
     return $this->reqCachePaths = $this->service->listPaths($path);
 }