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 de08161 commit baeebccCopy full SHA for baeebcc
circle.yml
@@ -1,6 +1,6 @@
1
machine:
2
php:
3
- version: 5.5.21
+ version: 5.3.29
4
5
test:
6
override:
tests/FeatureFlagTest.php
@@ -137,8 +137,8 @@ class FeatureFlagTest extends \PHPUnit_Framework_TestCase {
137
}";
138
139
public function testDecode() {
140
- FeatureFlag::decode(\GuzzleHttp\json_decode(FeatureFlagTest::$json1, true));
141
- FeatureFlag::decode(\GuzzleHttp\json_decode(FeatureFlagTest::$json2, true));
+ FeatureFlag::decode(json_decode(FeatureFlagTest::$json1, true));
+ FeatureFlag::decode(json_decode(FeatureFlagTest::$json2, true));
142
}
143
144
0 commit comments