Files
swiftadmin/vendor/symfony/polyfill-php80/Resources/stubs/Stringable.php

21 lines
396 B
PHP
Raw Normal View History

2022-08-19 19:48:37 +08:00
<?php
2022-11-28 19:11:12 +08:00
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
2022-08-19 19:48:37 +08:00
if (\PHP_VERSION_ID < 80000) {
interface Stringable
{
/**
* @return string
*/
public function __toString();
}
}