mirror of
https://github.com/Karaka-Management/oms-Search.git
synced 2026-02-14 09:18:39 +00:00
10 lines
104 B
PHP
10 lines
104 B
PHP
<?php
|
|
|
|
interface Stringable
|
|
{
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function __toString();
|
|
}
|