File "Point.php"
Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/vendor/spatie/image/src/Point.php
File size: 270 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Spatie\Image;
class Point
{
public function __construct(public int $x = 0, public int $y = 0)
{
}
public function setCoordinates(int $x, int $y): self
{
$this->x = $x;
$this->y = $y;
return $this;
}
}