| 1 | <?php  | 
            ||
| 18 | final class WhiteSpace  | 
            ||
| 19 | { | 
            ||
| 20 | /**  | 
            ||
| 21 | * @param Tokenizer $tokenizer  | 
            ||
| 22 | * @param string $string  | 
            ||
| 23 | * @param array $matches  | 
            ||
| 24 | */  | 
            ||
| 25 | public static function isWhiteSpace(Tokenizer $tokenizer, $string, array &$matches)  | 
            ||
| 31 | |||
| 32 | /**  | 
            ||
| 33 | * @param string $string  | 
            ||
| 34 | * @param array $matches  | 
            ||
| 35 | *  | 
            ||
| 36 | * @return bool  | 
            ||
| 37 | */  | 
            ||
| 38 | public static function isWhiteSpaceString($string, array &$matches)  | 
            ||
| 42 | |||
| 43 | /**  | 
            ||
| 44 | * @param array $matches  | 
            ||
| 45 | *  | 
            ||
| 46 | * @return array  | 
            ||
| 47 | */  | 
            ||
| 48 | public static function getWhiteSpaceString(array &$matches)  | 
            ||
| 55 | }  | 
            ||
| 56 |