codeclimate/php-test-reporter

View on GitHub
src/System/Git/GitInfoInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace CodeClimate\PhpTestReporter\System\Git;

/**
 * @internal
 */
interface GitInfoInterface
{
    /**
     * @return string
     */
    public function head();

    /**
     * @return string
     */
    public function branch();

    /**
     * @return int
     */
    public function committedAt();

    /**
     * @return array
     */
    public function toArray();
}