Skip to content

Commit

Permalink
prevent deprecation warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
cristianuibar committed Nov 16, 2023
1 parent 3286ee7 commit 31122e9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions gitium/inc/class-git-wrapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,11 @@ class Git_Wrapper {
private $last_error = '';
private $gitignore = GITIGNORE;

private $repo_dir = '';
private $private_key = '';

function __construct( $repo_dir ) {
$this->repo_dir = $repo_dir;
$this->private_key = '';
$this->repo_dir = $repo_dir;
}

function _rrmdir( $dir ) {
Expand Down

0 comments on commit 31122e9

Please sign in to comment.