gmarche/src/Framework/Auth.php

14 lines
153 B
PHP

<?php
namespace Framework;
use Framework\Auth\User;
interface Auth
{
/**
* @return User|null
*/
public function getUser(): ?User;
}