WorkingStatus class missed
mkabischev opened this issue · 5 comments
mkabischev commented
WorkingCopy class has method with body:
public function getStatus()
{
return WorkingStatus::parseOutput();
}
But WorkingStatus class doesn`t exist
aaroneaton commented
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
harry-m commented
+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;
}
GrahamCampbell commented
Closing as stale.
GrahamCampbell commented
It looks like this method was never implemented. I have deleted it.