Skip to content

Commit 0af79c9

Browse files
committed
run php-cs-fixer
1 parent 2fbfbf1 commit 0af79c9

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

src/Objects/Geometry.php

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,10 @@ abstract class Geometry implements Castable, Arrayable, Jsonable, JsonSerializab
2020
abstract public function toWkt(): Expression;
2121

2222
/**
23-
* @param int $options
24-
*
23+
* @param int $options
2524
* @return string
26-
*
27-
* @throws JsonException
25+
*
26+
* @throws JsonException
2827
*/
2928
public function toJson($options = 0): string
3029
{
@@ -90,7 +89,7 @@ public function toArray(): array
9089

9190
/**
9291
* @return string
93-
*
92+
*
9493
* @throws JsonException
9594
*/
9695
public function toFeatureCollectionJson(): string
@@ -112,8 +111,8 @@ public function toFeatureCollectionJson(): string
112111

113112
return json_encode(
114113
[
115-
'type' => 'FeatureCollection',
116-
'features' => $features,
114+
'type' => 'FeatureCollection',
115+
'features' => $features,
117116
],
118117
JSON_THROW_ON_ERROR
119118
);

0 commit comments

Comments
 (0)