File: Stringable.php

package info (click to toggle)
php-enum 4.7.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 556 kB
  • sloc: php: 3,481; xml: 15; makefile: 8
file content (11 lines) | stat: -rw-r--r-- 165 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
<?php

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