File "ApiInterface.php"

Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/league/glide/src/Api/ApiInterface.php
File size: 340 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace League\Glide\Api;

interface ApiInterface
{
    /**
     * Perform image manipulations.
     *
     * @param string $source Source image binary data.
     * @param array  $params The manipulation params.
     *
     * @return string Manipulated image binary data.
     */
    public function run($source, array $params);
}