Elgg\Filesystem\File::__construct PHP Method

__construct() public method

Constructor
public __construct ( Elgg\Filesystem\Directory $directory, string $path )
$directory Elgg\Filesystem\Directory The directory where this file resides
$path string The path to this file relative to the directory
    public function __construct(Directory $directory, $path)
    {
        $this->directory = $directory;
        $this->path = $path;
    }