Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Added support for php7 #5

Merged
merged 3 commits into from
Dec 13, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ matrix:
- php: 5.4
- php: 5.5
- php: 5.6
- php: hhvm
- php: 7.0
allow_failures:
- env: DEPENDENCIES='low'

Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Add to your composer.json

```
require: {
"coduo/php-to-string": "1.0.*"
"coduo/php-to-string": "2.0.*"
}
```

Expand All @@ -27,19 +27,19 @@ Supported types:
* resource

```php
use Coduo\ToString\String;
use Coduo\ToString\StringConverter;

$double = new String(1.12312);
$double = new StringConverter(1.12312);
echo $double; // "1.12312"

$datetime = new String(new \DateTime());
$datetime = new StringConverter(new \DateTime());
echo $datetime; // "\DateTime"

$array = new String(array('foo', 'bar', 'baz'));
$array = new StringConverter(array('foo', 'bar', 'baz'));
echo $array; // "Array(3)"

$res = fopen(sys_get_temp_dir() . "/foo", "w");
$resource = new String($res);
$resource = new StringConverter($res);
echo $resource; // "Resource(stream)"

```
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
"dev-master": "2.1-dev"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,7 @@

use PhpSpec\ObjectBehavior;

class Foo
{
public function __toString()
{
return 'This is Foo';
}
}

class StringSpec extends ObjectBehavior
class StringConverterSpec extends ObjectBehavior
{
/**
* @dataProvider positiveConversionExamples
Expand Down Expand Up @@ -51,3 +43,11 @@ function it_convert_resource_to_string()
unlink(sys_get_temp_dir() . "/foo");
}
}

class Foo
{
public function __toString()
{
return 'This is Foo';
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Coduo\ToString;

class String
class StringConverter
{
/**
* @var mixed
Expand Down