for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Redbox\Twitch\Transport\Adapter;
use Redbox\Twitch;
class Stream implements AdapterInterface
{
public function verifySupport()
// TODO: Implement verifySupport() method.
}
public function open()
// TODO: Implement connect() method.
public function close()
// TODO: Implement disconnect() method.
public function send($address, $method, $headers = null, $body = null)
// TODO: Implement send() method.
public function getHttpStatusCode()
// TODO: Implement getHttpStatusCode() method.
public function getContentType()
// TODO: Implement getContentType() method.