Skip to content

Commit

Permalink
Fix PHP 7.2 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
thekid committed Apr 2, 2018
1 parent c588d07 commit e2c0b2f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ php:
- 5.6
- 7.0
- 7.1
- 7.2
- hhvm
- nightly

Expand Down
7 changes: 6 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ HTTP protocol support for the XP Framework ChangeLog

## ?.?.? / ????-??-??

## 9.0.1 / 2018-04-02

* Fixed compatiblity with PHP 7.2 - @thekid

## 9.0.0 / 2017-06-20

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

## 7.0.1 / 2016-06-10

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

## 7.0.0 / 2016-02-21
Expand Down
2 changes: 1 addition & 1 deletion src/main/php/peer/http/Authorizations.class.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?php namespace peer\http;

use lang\Object;
use lang\XPClass;
use lang\reflect\TargetInvocationException;
use util\Secret;
Expand All @@ -9,6 +8,7 @@
/**
* Authorization factory class for HTTP
*
* @test xp://peer.http.unittest.AuthorizationsTest
*/
final class Authorizations {
const AUTH_HEADER= 'WWW-Authenticate';
Expand Down

0 comments on commit e2c0b2f

Please sign in to comment.