We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c59300 commit 79cbf64Copy full SHA for 79cbf64
README.md
@@ -27,19 +27,19 @@ Supported types:
27
* resource
28
29
```php
30
-use Coduo\ToString\String;
+use Coduo\ToString\StringConverter;
31
32
-$double = new String(1.12312);
+$double = new StringConverter(1.12312);
33
echo $double; // "1.12312"
34
35
-$datetime = new String(new \DateTime());
+$datetime = new StringConverter(new \DateTime());
36
echo $datetime; // "\DateTime"
37
38
-$array = new String(array('foo', 'bar', 'baz'));
+$array = new StringConverter(array('foo', 'bar', 'baz'));
39
echo $array; // "Array(3)"
40
41
$res = fopen(sys_get_temp_dir() . "/foo", "w");
42
-$resource = new String($res);
+$resource = new StringConverter($res);
43
echo $resource; // "Resource(stream)"
44
45
```
0 commit comments