8 lines
107 B
PHP
8 lines
107 B
PHP
<?php
|
|
|
|
namespace Ulmus\User\Entity;
|
|
|
|
interface UserInterface
|
|
{
|
|
public function __toString() : string;
|
|
} |