mirror of
https://github.com/linuxserver/Heimdall.git
synced 2026-02-21 20:20:34 +09:00
9 lines
147 B
PHP
9 lines
147 B
PHP
<?php
|
|
|
|
namespace Facade\FlareClient\Context;
|
|
|
|
interface ContextDetectorInterface
|
|
{
|
|
public function detectCurrentContext(): ContextInterface;
|
|
}
|