Skip to content
This repository has been archived by the owner on Dec 7, 2019. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/31' into develop
Browse files Browse the repository at this point in the history
Close #31
  • Loading branch information
mwillbanks committed Jul 29, 2015
2 parents 660b7fb + 5614c78 commit 487fb06
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,5 @@ All notable changes to this project will be documented in this file, in reverse
possible infinity fread in certain PHP versions.
- [#28](https://github.com/zendframework/ZendService_Apple_Apns/pull/28) Fixed docblocks
that prevented proper code completion in some editors.
- [#29](https://github.com/zendframework/ZendService_Apple_Apns/pull/29) Force
TLS vs. SSL due to [Apple moving to TLS](https://developer.apple.com/news/?id=10222014a).
4 changes: 2 additions & 2 deletions library/ZendService/Apple/Apns/Client/Feedback.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ class Feedback extends AbstractClient
* @var array
*/
protected $uris = array(
'ssl://feedback.sandbox.push.apple.com:2196',
'ssl://feedback.push.apple.com:2196'
'tls://feedback.sandbox.push.apple.com:2196',
'tls://feedback.push.apple.com:2196'
);

/**
Expand Down
4 changes: 2 additions & 2 deletions library/ZendService/Apple/Apns/Client/Message.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ class Message extends AbstractClient
* @var array
*/
protected $uris = array(
'ssl://gateway.sandbox.push.apple.com:2195',
'ssl://gateway.push.apple.com:2195',
'tls://gateway.sandbox.push.apple.com:2195',
'tls://gateway.push.apple.com:2195',
);

/**
Expand Down

0 comments on commit 487fb06

Please sign in to comment.