Open
Description
Rule
Warning for String-Representation in $this->createMock for Unit Test.
Reason
if you use String Representation typos can happen also it not nice for IDEs Usage Analyse
Implementation
Bad Example:
$this->createMock('\Foo\Bar\Baz');
Recommendation Example:
$this->createMock(\Foo\Bar\Baz::class);