File "AbstractTruncationStrategy.php"

Full Path: /home/fundopuh/trader.fxex.org/vendor/facade/flare-client-php/src/Truncation/AbstractTruncationStrategy.php
File size: 307 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Facade\FlareClient\Truncation;

abstract class AbstractTruncationStrategy implements TruncationStrategy
{
    /** @var ReportTrimmer */
    protected $reportTrimmer;

    public function __construct(ReportTrimmer $reportTrimmer)
    {
        $this->reportTrimmer = $reportTrimmer;
    }
}