Puli\Repository\Resource\FileResource::hasChild PHP Method

hasChild() public method

public hasChild ( $relPath )
    public function hasChild($relPath)
    {
        return false;
    }

Usage Example

Ejemplo n.º 1
0
 public function testHasChildDetached()
 {
     $resource = new FileResource($this->fixturesDir . '/dir1/file1');
     $this->assertFalse($resource->hasChild('file'));
 }