getFilesystemPaths() публичный Метод

The paths are returned in order of the resources. Resources that are not on the filesystem are ignored and not contained in the output.
public getFilesystemPaths ( ) : string[]
Результат string[] The filesystem paths.
 public function testGetFilesystemPathsIgnoresResourcesWithEmptyFilesystemPaths()
 {
     $collection = new FilesystemResourceCollection(array($dir = new DirectoryResource($this->fixturesDir . '/dir1'), $file = new FileResource($this->fixturesDir . '/file3'), $this->getMock('Puli\\Repository\\Api\\Resource\\FilesystemResource')));
     $this->assertSame(array($dir->getFilesystemPath(), $file->getFilesystemPath()), $collection->getFilesystemPaths());
 }