rfc6455/src/Encoding/ValidatorInterface.php
2014-08-30 08:09:39 -04:00

13 lines
327 B
PHP

<?php
namespace Ratchet\WebSocket\Encoding;
interface ValidatorInterface {
/**
* Verify a string matches the encoding type
* @param string $str The string to check
* @param string $encoding The encoding type to check against
* @return bool
*/
function checkEncoding($str, $encoding);
}