Warning: session_start(): Session cannot be started after headers have already been sent in /home/tvrreohg/public_html/manga.php on line 13
getPath() );
if( is_string($real) ){
if( is_dir($real) ){
$this->real = new Loco_fs_Directory($real);
}
else {
$this->real = new Loco_fs_File($real);
}
}
}
/**
* @return Loco_fs_File|null
*/
public function resolve():?Loco_fs_File {
return $this->real;
}
/**
* {@inheritdoc}
*/
public function isDirectory():bool {
return $this->real instanceof Loco_fs_Directory;
}
}