12 lines
177 B
PHP
12 lines
177 B
PHP
<?php
|
|
|
|
namespace Spatie\FlareClient\Contracts;
|
|
|
|
interface ProvidesFlareContext
|
|
{
|
|
/**
|
|
* @return array<int|string, mixed>
|
|
*/
|
|
public function context(): array;
|
|
}
|