25 lines
415 B
PHP
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;
|
|
} |