diff options
Diffstat (limited to 'src/Canvas/DrawContextInterface.php')
-rw-r--r-- | src/Canvas/DrawContextInterface.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/Canvas/DrawContextInterface.php b/src/Canvas/DrawContextInterface.php index 5b79f8d..6b4aaa5 100644 --- a/src/Canvas/DrawContextInterface.php +++ b/src/Canvas/DrawContextInterface.php @@ -12,8 +12,6 @@ interface DrawContextInterface * Draw image on canvas. * * @param array $canvasBuffer If colored, each pixel => 4 items on array (RGBA) - * @param int $left - * @param int $top */ - public function draw($canvasBuffer, $left, $top); + public function draw($canvasBuffer); } |