Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/Stub/Expected.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Expected
*
* ```php
* <?php
* use \Codeception\Stub\Expected;
* use Codeception\Stub\Expected;
*
* $user = $this->make('User', [
* 'getName' => Expected::never(),
Expand Down Expand Up @@ -46,7 +46,7 @@ public static function never($params = null): StubMarshaler
*
* ```php
* <?php
* use \Codeception\Stub\Expected;
* use Codeception\Stub\Expected;
*
* $user = $this->make(
* 'User',
Expand Down Expand Up @@ -83,7 +83,7 @@ public static function once($params = null): StubMarshaler
*
* ```php
* <?php
* use \Codeception\Stub\Expected;
* use Codeception\Stub\Expected;
*
* $user = $this->make(
* 'User',
Expand Down Expand Up @@ -124,8 +124,8 @@ public static function atLeastOnce($params = null): StubMarshaler
*
* ``` php
* <?php
* use \Codeception\Stub;
* use \Codeception\Stub\Expected;
* use Codeception\Stub;
* use Codeception\Stub\Expected;
*
* $user = $this->make(
* 'User',
Expand Down