summaryrefslogtreecommitdiff
path: root/src/phorkie/GitCommandBinary.php
blob: 13a31db30a5274ffe63400982d4156ef1fdbe64e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
namespace phorkie;

class GitCommandBinary extends \VersionControl_Git_Util_Command
{
    /**
     * Do not strip anything, we're accessing binary files
     */
    public function stripEscapeSequence($string)
    {
        return $string;
    }
}

?>