🤩 File Manager - Mr.X
PHP:
8.3.33
Server:
Apache
OS:
Linux 5.14.0-611.49.1.el9_7.x86_64
User:
websparkit
Navigate
Upload:
Upload
New File
New Folder
Editing:ImposterInterface.php
<?php declare(strict_types=1); namespace TypistTech\Imposter; interface ImposterInterface { /** * Get all valid (exist) autoload paths. * * @return string[] */ public function getAutoloads(): array; /** * Get all invalid (not exist) autoload paths. * * @return string[] */ public function getInvalidAutoloads(): array; /** * Transform all autoload files. * * @return void */ public function run(); /** * Transform a file or directory recursively. * * @param string $target Path to the target file or directory. * * @return void */ public function transform(string $target); }
Save Changes
Cancel
Create New File
Create New Folder