We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 264f93b commit c311017Copy full SHA for c311017
rules-tests/Arguments/Rector/RectorOrder/Fixture/fixture.php.inc
@@ -27,10 +27,10 @@ class SomeTest extends TestCase
27
{
28
public function test()
29
30
- $this->assertContains('f', 'foo');
31
+ $this->assertStringContainsString('f', 'foo');
32
33
- $this->assertContains('oauth_body_hash', $headers['Authorization'][0]);
+ $this->assertStringContainsString('oauth_body_hash', $headers['Authorization'][0]);
34
}
35
36
0 commit comments