Skip to content

Commit 79cbf64

Browse files
committed
Updated README.md
1 parent 7c59300 commit 79cbf64

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,19 @@ Supported types:
2727
* resource
2828

2929
```php
30-
use Coduo\ToString\String;
30+
use Coduo\ToString\StringConverter;
3131

32-
$double = new String(1.12312);
32+
$double = new StringConverter(1.12312);
3333
echo $double; // "1.12312"
3434

35-
$datetime = new String(new \DateTime());
35+
$datetime = new StringConverter(new \DateTime());
3636
echo $datetime; // "\DateTime"
3737

38-
$array = new String(array('foo', 'bar', 'baz'));
38+
$array = new StringConverter(array('foo', 'bar', 'baz'));
3939
echo $array; // "Array(3)"
4040

4141
$res = fopen(sys_get_temp_dir() . "/foo", "w");
42-
$resource = new String($res);
42+
$resource = new StringConverter($res);
4343
echo $resource; // "Resource(stream)"
4444

4545
```

0 commit comments

Comments
 (0)