RSS Git Download  Clone
Raw Blame History
<?php

namespace GitList\Escaper;

class ArgumentEscaper
{
    public function escape($argument)
    {
        if ($argument === null) {
            return null;
        }

        return escapeshellcmd($argument);
    }
}