/
/
home
/
melaqxso
/
allshadesofwellness.com
/
wp-content
/
plugins
/
loco-translate
/
src
/
fs
Server: server63.web-hosting.com (198.54.116.184)
You: 216.73.216.220
PHP 7.4.33
Dir:
/home/melaqxso/allshadesofwellness.com/wp-content/plugins/loco-translate/src/fs
Edit:
/home/melaqxso/allshadesofwellness.com/wp-content/plugins/loco-translate/src/fs/Link.php
<?php /** * */ class Loco_fs_Link extends Loco_fs_File { /** * @var Loco_fs_File */ private ?Loco_fs_File $real = null; /** * {@inheritdoc} */ public function __construct( $path ){ parent::__construct($path); $real = realpath( $this->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; } }
Ukuran: 835 B