Skip to content

Commit 7da70bf

Browse files
W0rmaSidRoberts
andauthored
chore: fix use statement (#57)
Co-authored-by: Sid Roberts <sid@sidroberts.co.uk>
1 parent 0c573cd commit 7da70bf

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/Stub/Expected.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class Expected
1818
*
1919
* ```php
2020
* <?php
21-
* use \Codeception\Stub\Expected;
21+
* use Codeception\Stub\Expected;
2222
*
2323
* $user = $this->make('User', [
2424
* 'getName' => Expected::never(),
@@ -46,7 +46,7 @@ public static function never($params = null): StubMarshaler
4646
*
4747
* ```php
4848
* <?php
49-
* use \Codeception\Stub\Expected;
49+
* use Codeception\Stub\Expected;
5050
*
5151
* $user = $this->make(
5252
* 'User',
@@ -83,7 +83,7 @@ public static function once($params = null): StubMarshaler
8383
*
8484
* ```php
8585
* <?php
86-
* use \Codeception\Stub\Expected;
86+
* use Codeception\Stub\Expected;
8787
*
8888
* $user = $this->make(
8989
* 'User',
@@ -124,8 +124,8 @@ public static function atLeastOnce($params = null): StubMarshaler
124124
*
125125
* ``` php
126126
* <?php
127-
* use \Codeception\Stub;
128-
* use \Codeception\Stub\Expected;
127+
* use Codeception\Stub;
128+
* use Codeception\Stub\Expected;
129129
*
130130
* $user = $this->make(
131131
* 'User',

0 commit comments

Comments
 (0)