10 lines
170 B
PHP
10 lines
170 B
PHP
<?php
|
|
namespace Ratchet\Protocol\WebSocket\Version;
|
|
|
|
interface VersionInterface {
|
|
/**
|
|
* @param string
|
|
* @return string
|
|
*/
|
|
function sign($header);
|
|
} |