OperationInterface.php 226 B

123456789101112
  1. <?php
  2. declare(strict_types = 1);
  3. namespace BaconQrCode\Renderer\Path;
  4. interface OperationInterface
  5. {
  6. /**
  7. * Translates the operation's coordinates.
  8. */
  9. public function translate(float $x, float $y) : self;
  10. }