Skip to content

Commit 4829b0e

Browse files
committed
Merge branch 'release/1.0.9'
2 parents f9cb4bd + 4a80212 commit 4829b0e

14 files changed

+11
-4
lines changed

.gitignore

100755100644
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
vendor/
22
composer.lock
3-
phpunit.xml
3+
phpunit.xml
4+

.travis.yml

100755100644
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,5 @@ script:
2121

2222
after_script:
2323
- wget https://scrutinizer-ci.com/ocular.phar
24-
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
24+
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
25+

CHANGELOG.md

100755100644
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# CHANGELOG
22

3+
## 1.0.9
4+
- Improve code, remove @ usage in generic __set_State method, add SensioLabs Insight badge
5+
36
## 1.0.8
47
- Issue #7 - Missing SoapClient location option
58

LICENSE

100755100644
File mode changed.

README.md

100755100644
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
[![Code Coverage](https://scrutinizer-ci.com/g/WsdlToPhp/PackageBase/badges/coverage.png)](https://scrutinizer-ci.com/g/WsdlToPhp/PackageBase/)
88
[![Dependency Status](https://www.versioneye.com/user/projects/55b10586643533001c00010f/badge.svg)](https://www.versioneye.com/user/projects/55b10586643533001c00010f)
99
[![StyleCI](https://styleci.io/repos/38760239/shield)](https://styleci.io/repos/38760239)
10+
[![SensioLabsInsight](https://insight.sensiolabs.com/projects/bfbc0c8f-5793-489b-8151-36ea149ec98d/mini.png)](https://insight.sensiolabs.com/projects/bfbc0c8f-5793-489b-8151-36ea149ec98d)
1011

1112
## Main features
1213
This project contains base classes used as parent class by the generated classes from [PackageGenerator](https://github.com/WsdlToPhp/PackageGenerator):

composer.json

100755100644
File mode changed.

phpunit.xml.dist

100755100644
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,5 @@
2222
</exclude>
2323
</whitelist>
2424
</filter>
25-
</phpunit>
25+
</phpunit>
26+

src/AbstractSoapClientBase.php

100755100644
File mode changed.

src/AbstractStructArrayBase.php

100755100644
File mode changed.

src/AbstractStructBase.php

100755100644
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ abstract class AbstractStructBase implements StructInterface
1414
public static function __set_state(array $array)
1515
{
1616
$className = get_called_class();
17-
$object = @new $className();
17+
$object = new $className();
1818
foreach ($array as $name => $value) {
1919
$object->_set($name, $value);
2020
}

0 commit comments

Comments
 (0)