Skip to content

Commit 92d1da7

Browse files
committed
docs: break long line
1 parent d236c35 commit 92d1da7

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -165,10 +165,14 @@ This patcher allows replacement of constant value.
165165
~~~php
166166
public function test_index()
167167
{
168-
MonkeyPatch::patchConstant('ENVIRONMENT', 'development', Welcome::class . '::index');
169-
168+
MonkeyPatch::patchConstant(
169+
'ENVIRONMENT',
170+
'development',
171+
Welcome::class . '::index'
172+
);
173+
170174
$output = $this->request('GET', 'welcome/index');
171-
175+
172176
$this->assertContains('development', $output);
173177
}
174178
~~~

0 commit comments

Comments
 (0)