for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace AppUtils\ImageHelper;
class PixelCoordinate
{
private int $x;
private int $y;
public function __construct(int $x, int $y)
$this->x = $x;
$this->y = $y;
}
public function getX() : int
return $this->x;
public function getY() : int
return $this->y;