File "Point.php"
Full Path: /var/www/html/back/vendor/spatie/image/src/Point.php
File size: 260 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;
}
}