mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-26 12:46:42 +01:00
added comment with concrete example
This commit is contained in:
parent
436e3f4110
commit
330689d4b6
@ -13,12 +13,14 @@ use Rector\Rector\AbstractRector;
|
||||
|
||||
/**
|
||||
* Before:
|
||||
* - $this->assertSame(10, count($anything), 'message');
|
||||
* - $this->assertSame($value, {function}($anything), 'message');
|
||||
* - $this->assertNotSame($value, {function}($anything), 'message');
|
||||
* - $this->assertEquals($value, {function}($anything), 'message');
|
||||
* - $this->assertNotEquals($value, {function}($anything), 'message');
|
||||
*
|
||||
* After:
|
||||
* - $this->assertCount(10, $anything, 'message');
|
||||
* - $this->assert{function}($value, $anything, 'message');
|
||||
* - $this->assertNot{function}($value, $anything, 'message');
|
||||
*/
|
||||
|
Loading…
x
Reference in New Issue
Block a user