JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "ProcessOutput.php"

Full Path: /home/palsarh/web/palsarh.in/public_html/vendor/pbmedia/laravel-ffmpeg/src/Support/ProcessOutput.php
File size: 533 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace ProtoneMedia\LaravelFFMpeg\Support;

class ProcessOutput
{
    private $all;

    private $errors;

    private $out;

    public function __construct(array $all, array $errors, array $out)
    {
        $this->all = $all;
        $this->errors = $errors;
        $this->out = $out;
    }

    public function all(): array
    {
        return $this->all;
    }

    public function errors(): array
    {
        return $this->errors;
    }

    public function out(): array
    {
        return $this->out;
    }
}