PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
vendor
/
intervention
/
image
/
src
/
Intervention
/
Image
<?php namespace Intervention\Image; class Point { /** * X coordinate * * @var int */ public $x; /** * Y coordinate * * @var int */ public $y; /** * Creates a new instance * * @param int $x * @param int $y */ public function __construct($x = null, $y = null) { $this->x = is_numeric($x) ? intval($x) : 0; $this->y = is_numeric($y) ? intval($y) : 0; } /** * Sets X coordinate * * @param int $x */ public function setX($x) { $this->x = intval($x); } /** * Sets Y coordinate * * @param int $y */ public function setY($y) { $this->y = intval($y); } /** * Sets both X and Y coordinate * * @param int $x * @param int $y */ public function setPosition($x, $y) { $this->setX($x); $this->setY($y); } }
[+]
Gd
[-] ImageServiceProviderLeague.php
[edit]
[-] AbstractEncoder.php
[edit]
[-] File.php
[edit]
[+]
..
[+]
Exception
[-] Size.php
[edit]
[-] ImageServiceProviderLumen.php
[edit]
[-] AbstractDriver.php
[edit]
[+]
Filters
[-] ImageManager.php
[edit]
[-] Image.php
[edit]
[-] AbstractDecoder.php
[edit]
[-] Constraint.php
[edit]
[-] Point.php
[edit]
[+]
Facades
[-] AbstractShape.php
[edit]
[-] ImageServiceProvider.php
[edit]
[-] ImageServiceProviderLaravel4.php
[edit]
[+]
Commands
[+]
Imagick
[-] AbstractColor.php
[edit]
[-] AbstractFont.php
[edit]
[-] ImageManagerStatic.php
[edit]
[-] ImageServiceProviderLaravelRecent.php
[edit]
[-] Response.php
[edit]