Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update all http links to https #1071

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/Ratchet/Server/FlashPolicy.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@
* Be sure to run your server instance on port 843
* By default this lets accepts everything, make sure you tighten the rules up for production
* @final
* @link http://www.adobe.com/devnet/articles/crossdomain_policy_file_spec.html
* @link http://learn.adobe.com/wiki/download/attachments/64389123/CrossDomain_PolicyFile_Specification.pdf?version=1
* @link view-source:http://www.adobe.com/xml/schemas/PolicyFileSocket.xsd
*/
class FlashPolicy implements MessageComponentInterface {
Expand Down
2 changes: 1 addition & 1 deletion src/Ratchet/Session/Serialize/PhpBinaryHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function serialize(array $data) {

/**
* {@inheritdoc}
* @link http://ca2.php.net/manual/en/function.session-decode.php#108037 Code from this comment on php.net
* @link https://www.php.net/manual/en/function.session-decode.php#108037 Code from this comment on php.net
*/
public function unserialize($raw) {
$returnData = array();
Expand Down
2 changes: 1 addition & 1 deletion src/Ratchet/Session/Serialize/PhpHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function serialize(array $data) {

/**
* {@inheritdoc}
* @link http://ca2.php.net/manual/en/function.session-decode.php#108037 Code from this comment on php.net
* @link https://www.php.net/manual/en/function.session-decode.php#108037 Code from this comment on php.net
* @throws \UnexpectedValueException If there is a problem parsing the data
*/
public function unserialize($raw) {
Expand Down
1 change: 0 additions & 1 deletion src/Ratchet/Wamp/ServerProtocol.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
/**
* WebSocket Application Messaging Protocol
*
* @link http://wamp.ws/spec
* @link https://github.com/oberstet/autobahn-js
*
* +--------------+----+------------------+
Expand Down
4 changes: 1 addition & 3 deletions src/Ratchet/Wamp/WampServer.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@
/**
* Enable support for the official WAMP sub-protocol in your application
* WAMP allows for Pub/Sub and RPC
* @link http://wamp.ws The WAMP specification
* @link https://github.com/oberstet/autobahn-js Souce for client side library
* @link http://autobahn.s3.amazonaws.com/js/autobahn.min.js Minified client side library
* @link https://github.com/oberstet/autobahn-js Source for client side library
*/
class WampServer implements MessageComponentInterface, WsServerInterface {
/**
Expand Down
4 changes: 2 additions & 2 deletions src/Ratchet/WebSocket/WsServer.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
/**
* The adapter to handle WebSocket requests/responses
* This is a mediator between the Server and your application to handle real-time messaging through a web browser
* @link http://ca.php.net/manual/en/ref.http.php
* @link http://dev.w3.org/html5/websockets/
* @link https://www.php.net/manual/en/ref.http.php
* @link https://websockets.spec.whatwg.org
*/
class WsServer implements HttpServerInterface {
use CloseResponseTrait;
Expand Down