RSS Git Download  Clone
Raw View History
Blames found: 1 Mode: php Binary: false


Hang on, we reloading big blames...
<?php namespace GitList\Escaper; class ArgumentEscaper { public function escape($argument) { if ($argument === null) { return null; } return escapeshellcmd($argument); } }