mxmbsocket/src/Ratchet/WebSocket/Encoding/ValidatorInterface.php
Grégoire Pineau 3a8578bd17 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);
}