aboutsummaryrefslogtreecommitdiff
path: root/src/phorkie/GitCommandBinary.php
blob: a0053491f307f87a3d88265475a494b35c4a1c4d (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;
    }
}

?>