芝麻web文件管理V1.00
编辑当前文件:/home/provyohx/public_html/libraries__c0c73d1/src/String/StringableInterface.php
* @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\CMS\String; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; // phpcs:enable PSR1.Files.SideEffects /** * A transitioning interface to PHP implicit \Stringable interface * * @since 5.3.0 */ interface StringableInterface { /** * To String magick. * * @return string * * @since 5.3.0 */ public function __toString(): string; }