TQ\Vcs\Repository\AbstractRepository::setAuthor PHP Method

setAuthor() public method

Sets the author used when committing changes
public setAuthor ( string $author ) : TQ\Vcs\Repository\RepositoryInterface
$author string The author used when committing changes
return TQ\Vcs\Repository\RepositoryInterface
    public function setAuthor($author)
    {
        $this->author = (string) $author;
        return $this;
    }