1
0
Fork 0

Remove unnecessary implementation of interface method in abstract class

pull/8852/head
Nils Adermann 2020-04-28 11:56:26 +02:00
parent b9be78b689
commit 56edd53046
1 changed files with 0 additions and 9 deletions

View File

@ -42,13 +42,4 @@ abstract class SolverOperation implements OperationInterface
{
return $this->reason;
}
/**
* @param $lock bool Whether this is an operation on the lock file
* @return string
*/
public function show($lock)
{
throw new \RuntimeException('abstract method needs to be implemented in subclass, not marked abstract for compatibility with PHP <= 5.3.8');
}
}