MAPG-10 reformat Bounds.php

This commit is contained in:
Bence Pőcze 2020-05-19 03:19:50 +02:00
parent e0d65b6e27
commit 9555a43cf9

View File

@ -10,7 +10,7 @@ class Bounds
private bool $initialized = false; private bool $initialized = false;
public static function createWithPosition(Position $position) : Bounds public static function createWithPosition(Position $position): Bounds
{ {
$instance = new static(); $instance = new static();
@ -19,7 +19,7 @@ class Bounds
return $instance; return $instance;
} }
public static function createDirectly(float $southLat, $westLng, $northLat, $eastLng) : Bounds public static function createDirectly(float $southLat, $westLng, $northLat, $eastLng): Bounds
{ {
$instance = new static(); $instance = new static();