You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description
While using PHPUnit 7.5 mocks the DebugClassLoader reports
The "PHPUnit\Framework\MockObject\MockObject" interface extends "PHPUnit_Framework_MockObject_MockObject" that is deprecated Use PHPUnit\Framework\MockObject\MockObject instead.
As you can see, the first interface and one suggested are exactly the same that correctly extends the deprecated interface in order to not break BC.
How to reproduce
Just use a simple $this->createMock in PHPUnit 7.5 test case.