mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 09:42:24 +01:00
9 lines
157 B
PHP
9 lines
157 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Behavioral\Mediator;
|
|
|
|
interface Mediator
|
|
{
|
|
public function getUser(string $username): string;
|
|
}
|