Files
pest/stubs/Helpers.php
2020-05-14 23:03:56 +02:00

13 lines
263 B
PHP

<?php
use Illuminate\Contracts\Auth\Authenticatable;
use Tests\TestCase;
/**
* Set the currently logged in user for the application.
*/
function actingAs(Authenticatable $user, string $driver = null): TestCase
{
return test()->actingAs($user, $driver);
}