Files
Kanboard-Prod/vendor/symfony/polyfill-php80/Resources/stubs/Stringable.php
Frédéric Guillot f5bb55bdb8 PHP 8 Compatibility
2022-02-05 11:49:03 -08:00

12 lines
165 B
PHP

<?php
if (\PHP_VERSION_ID < 80000) {
interface Stringable
{
/**
* @return string
*/
public function __toString();
}
}