snipe-it/tests/Support/InteractsWithAuthentication.php

17 lines
281 B
PHP
Raw Normal View History

<?php
namespace Tests\Support;
use Illuminate\Contracts\Auth\Authenticatable;
use Laravel\Passport\Passport;
trait InteractsWithAuthentication
{
protected function actingAsForApi(Authenticatable $user)
{
Passport::actingAs($user);
return $this;
}
}