GitWrapper\GitWorkingCopy::show PHP Method

show() public method

Show various types of objects.
public show ( string $object, array $options = [] ) : GitWorkingCopy
$object string The names of objects to show. For a more complete list of ways to spell object names, see "SPECIFYING REVISIONS" section in gitrevisions(7).
$options array (optional) An associative array of command line options.
return GitWorkingCopy
    public function show($object, array $options = array())
    {
        $args = array('show', $object, $options);
        return $this->run($args);
    }