Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
tipuloidea
/
back
/
vendor
/
spatie
/
image
/
src
:
Point.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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; } }