ApiInterface
last analyzed

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
run() 0 1 ?
1
<?php
2
3
namespace League\Glide\Api;
4
5
interface ApiInterface
6
{
7
    /**
8
     * Perform image manipulations.
9
     * @param  string $source Source image binary data.
10
     * @param  array  $params The manipulation params.
11
     * @return string Manipulated image binary data.
12
     */
13
    public function run($source, array $params);
14
}
15