소스 검색

Remove unnecessary implementation of interface method in abstract class

Nils Adermann 4 년 전
부모
커밋
56edd53046
1개의 변경된 파일0개의 추가작업 그리고 9개의 파일을 삭제
  1. 0 9
      src/Composer/DependencyResolver/Operation/SolverOperation.php

+ 0 - 9
src/Composer/DependencyResolver/Operation/SolverOperation.php

@@ -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');
-    }
 }