Jyxo\Svn\Client::commit PHP 메소드

commit() 공개 메소드

SVN commit.
public commit ( string $path, string $message, mixed $params = null, string $user = '', string $password = '' ) : Result
$path string Local working copy path
$message string Commit message
$params mixed Additional parameters
$user string SVN username
$password string SVN user password
리턴 Result
    public function commit(string $path, string $message, $params = null, string $user = '', string $password = '') : Result
    {
        return $this->callSvn('commit', $user, $password, array_merge((array) $params, ['-m' => $message], (array) $path));
    }