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