gitonomy/gitlib

WorkingStatus class missed

mkabischev opened this issue · 5 comments

WorkingCopy class has method with body:

public function getStatus()
    {
        return WorkingStatus::parseOutput();
    }

But WorkingStatus class doesn`t exist

I'm also getting this error using the following code:

// All classes imported
$repo = new Repository('/tmp/repo');
$wc = $repo->getWorkingCopy();
var_dump($wc = $repo->getStatus());

Received:

Fatal error: Class 'Gitonomy\Git\WorkingStatus' not found in /srv/www/.../vendor/gitonomy/gitlib/src/Gitonomy/Git/WorkingCopy.php on line 40

+1 to this issue.

emaV commented

Uhm, it seems some code has been lost in the space.

Indeed as brutal as it seems, we can get some information replicating the code from getUntrackedFiles without the filtering part:

    public function getStatus()
    {
         $lines = explode("\0", $this->run('status', array('--porcelain', '--untracked-files=all', '-z')));
         return $lines;
    }

Closing as stale.

It looks like this method was never implemented. I have deleted it.