Skip to content

Commit

Permalink
GitRepository: changed visibility from private to protected
Browse files Browse the repository at this point in the history
  • Loading branch information
janpecha committed Jul 30, 2015
1 parent 1b0daa2 commit 0f4ca22
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/GitRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
class GitRepository implements IGit
{
/** @var string */
private $repository;
protected $repository;

/** @var string|NULL @internal */
private $cwd;
protected $cwd;



Expand Down Expand Up @@ -381,7 +381,7 @@ public function isChanges()
/**
* @return self
*/
private function begin()
protected function begin()
{
if($this->cwd === NULL) // TODO: good idea??
{
Expand All @@ -397,7 +397,7 @@ private function begin()
/**
* @return self
*/
private function end()
protected function end()
{
if(is_string($this->cwd))
{
Expand All @@ -415,7 +415,7 @@ private function end()
* @param callback|NULL
* @return string[]|NULL
*/
private function extractFromCommand($cmd, $filter = NULL)
protected function extractFromCommand($cmd, $filter = NULL)
{
$output = array();
$exitCode = NULL;
Expand Down

0 comments on commit 0f4ca22

Please sign in to comment.