We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee5c293 commit 5ae76d1Copy full SHA for 5ae76d1
README.md
@@ -1,8 +1,9 @@
1
Symfony Polyfill / Php80
2
========================
3
4
-This component provides functions added to PHP 8.0 core:
+This component provides features added to PHP 8.0 core:
5
6
+- `Stringable` interface
7
- [`fdiv`](https://php.net/fdiv)
8
- `ValueError` class
9
- `FILTER_VALIDATE_BOOL` constant
Resources/stubs/Stringable.php
@@ -0,0 +1,9 @@
+<?php
+
+interface Stringable
+{
+ /**
+ * @return string
+ */
+ public function __toString();
+}
0 commit comments