mirror of
https://github.com/10h30/laravel-file-upload-series.git
synced 2026-07-11 10:45:58 +09:00
11 lines
145 B
PHP
11 lines
145 B
PHP
<?php
|
|
|
|
namespace Illuminate\Contracts\Auth;
|
|
|
|
interface Guard
|
|
{
|
|
/**
|
|
* @return \App\Models\User|null
|
|
*/
|
|
public function user();
|
|
} |