1 | <?php |
||
7 | trait RefreshDatabase |
||
8 | { |
||
9 | use BaseRefreshDatabase{ |
||
10 | refreshTestDatabase as protected parentRefreshTestDatabase; |
||
11 | } |
||
12 | |||
13 | protected function refreshTestDatabase() |
||
14 | { |
||
15 | $this->swapTestingDatabase(); |
||
16 | $this->parentRefreshTestDatabase(); |
||
|
|||
17 | } |
||
18 | |||
19 | protected function swapTestingDatabase(): void |
||
30 | } |
||
31 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.