default operator is AND now
[phorkie.git] / src / phorkie / GitCommandBinary.php
1 <?php
2 namespace phorkie;
3
4 class GitCommandBinary extends \VersionControl_Git_Util_Command
5 {
6     /**
7      * Do not strip anything, we're accessing binary files
8      */
9     public function stripEscapeSequence($string)
10     {
11         return $string;
12     }
13 }
14
15 ?>