9 lines
115 B
PHP
9 lines
115 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Facade\FlareClient\Context;
|
||
|
|
|
||
|
|
interface ContextInterface
|
||
|
|
{
|
||
|
|
public function toArray(): array;
|
||
|
|
}
|