mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-03-18 21:04:52 +08:00
22 lines
441 B
PHP
22 lines
441 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace SPC\builder;
|
|
|
|
/**
|
|
* Interface for library implementations
|
|
*
|
|
* This interface defines the basic contract that all library classes must implement.
|
|
* It provides a common way to identify and work with different library types.
|
|
*/
|
|
interface LibraryInterface
|
|
{
|
|
/**
|
|
* Get the name of the library
|
|
*
|
|
* @return string The library name
|
|
*/
|
|
public function getName(): string;
|
|
}
|