-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add Delay facade
- Loading branch information
Showing
5 changed files
with
60 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Newman\LaravelDelay\Facades; | ||
|
||
use Illuminate\Support\Facades\Facade; | ||
use Newman\LaravelDelay\Contracts\DelayContract; | ||
|
||
/** | ||
* @mixin DelayContract | ||
*/ | ||
class Delay extends Facade | ||
{ | ||
protected static function getFacadeAccessor(): string | ||
{ | ||
return DelayContract::class; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Newman\LaravelDelay\Tests; | ||
|
||
use Newman\LaravelDelay\DelayFake; | ||
use Newman\LaravelDelay\Facades\Delay; | ||
|
||
class FacadeTest extends TestCase | ||
{ | ||
public function test_it_sleeps_through_facade(): void | ||
{ | ||
/** @var DelayFake $facade */ | ||
$facade = Delay::for(3); | ||
|
||
$facade->assertSleep()->assertSleepFor(3); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters