Skip to content

Commit e2c0b2f

Browse files
committed
Fix PHP 7.2 compatibility
1 parent c588d07 commit e2c0b2f

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ php:
88
- 5.6
99
- 7.0
1010
- 7.1
11+
- 7.2
1112
- hhvm
1213
- nightly
1314

ChangeLog.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ HTTP protocol support for the XP Framework ChangeLog
33

44
## ?.?.? / ????-??-??
55

6+
## 9.0.1 / 2018-04-02
7+
8+
* Fixed compatiblity with PHP 7.2 - @thekid
9+
610
## 9.0.0 / 2017-06-20
711

812
* Merged PR #20: XP9 Compatibility - @thekid
@@ -22,7 +26,8 @@ HTTP protocol support for the XP Framework ChangeLog
2226

2327
## 7.0.1 / 2016-06-10
2428

25-
* Allowed IPV6 addresses in *_PROXY, e.g. `[::1]:3128` - @thekid
29+
* Allowed IPV6 addresses in PROXY environment variables, e.g. `[::1]:3128`
30+
(@thekid)
2631
* Fixed issue #15: NO_PROXY - @thekid
2732

2833
## 7.0.0 / 2016-02-21

src/main/php/peer/http/Authorizations.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?php namespace peer\http;
22

3-
use lang\Object;
43
use lang\XPClass;
54
use lang\reflect\TargetInvocationException;
65
use util\Secret;
@@ -9,6 +8,7 @@
98
/**
109
* Authorization factory class for HTTP
1110
*
11+
* @test xp://peer.http.unittest.AuthorizationsTest
1212
*/
1313
final class Authorizations {
1414
const AUTH_HEADER= 'WWW-Authenticate';

0 commit comments

Comments
 (0)