Flatlogic Bot 90597ae75f draftv1
2025-10-05 16:43:57 +00:00

18 lines
336 B
PHP

<?php
declare(strict_types = 1);
namespace BaconQrCode\Renderer\Path;
interface OperationInterface
{
/**
* Translates the operation's coordinates.
*/
public function translate(float $x, float $y) : self;
/**
* Rotates the operation's coordinates.
*/
public function rotate(int $degrees) : self;
}