rfc6455/Encoding/ValidatorInterface.php
Grégoire Pineau c1754d302c CS (eof_ending)
2014-03-21 16:46:43 +01: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);
}