Files
hyperf_test/app/Interface/Test/Composite/FileSystemComponentInterface.php
2025-09-07 19:36:04 +08:00

25 lines
415 B
PHP

<?php
namespace App\Interface\Test\Composite;
interface FileSystemComponentInterface
{
/**
* 获取名字
* @return string
*/
public function getName(): string;
/**
* 获取大小
* @return int
*/
public function getSize(): int;
/**
* 显示
* @param string $prefix
* @return void
*/
public function display(string $prefix = ''): void;
}