File "TruncationStrategy.php"

Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/spatie/flare-client-php/src/Truncation/TruncationStrategy.php
File size: 245 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Spatie\FlareClient\Truncation;

interface TruncationStrategy
{
    /**
     * @param array<int|string, mixed> $payload
     *
     * @return array<int|string, mixed>
     */
    public function execute(array $payload): array;
}