Skip to content

Commit 7adbcdd

Browse files
author
Matan Yadaev
committed
Fix CI
1 parent 7be4fa6 commit 7adbcdd

File tree

6 files changed

+0
-13
lines changed

6 files changed

+0
-13
lines changed

src/GeometryCast.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ public function __construct(string $className)
2929
* @param string $key
3030
* @param string|Expression|null $wkbOrWKt
3131
* @param array<string, mixed> $attributes
32-
*
3332
* @return Geometry|null
3433
*/
3534
public function get($model, string $key, $wkbOrWKt, array $attributes): ?Geometry
@@ -52,7 +51,6 @@ public function get($model, string $key, $wkbOrWKt, array $attributes): ?Geometr
5251
* @param string $key
5352
* @param Geometry|mixed|null $geometry
5453
* @param array<string, mixed> $attributes
55-
*
5654
* @return Expression|null
5755
*
5856
* @throws InvalidArgumentException

src/Objects/Geometry.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ abstract public function toWkt(bool $withFunction = true): string;
2020

2121
/**
2222
* @param int $options
23-
*
2423
* @return string
2524
*
2625
* @throws JsonException
@@ -32,7 +31,6 @@ public function toJson($options = 0): string
3231

3332
/**
3433
* @param string $wkb
35-
*
3634
* @return static
3735
*
3836
* @throws InvalidArgumentException
@@ -52,7 +50,6 @@ public static function fromWkb(string $wkb): static
5250

5351
/**
5452
* @param string $wkt
55-
*
5653
* @return static
5754
*
5855
* @throws InvalidArgumentException
@@ -72,7 +69,6 @@ public static function fromWkt(string $wkt): static
7269

7370
/**
7471
* @param string $geoJson
75-
*
7672
* @return static
7773
*
7874
* @throws InvalidArgumentException
@@ -147,7 +143,6 @@ abstract public function getCoordinates(): array;
147143

148144
/**
149145
* @param array<string> $arguments
150-
*
151146
* @return CastsAttributes
152147
*/
153148
public static function castUsing(array $arguments): CastsAttributes

src/Objects/GeometryCollection.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ public function __construct(Collection|array $geometries)
4343

4444
/**
4545
* @param bool $withFunction
46-
*
4746
* @return string
4847
*
4948
* @phpcsSuppress SlevomatCodingStandard.Functions.UnusedParameter
@@ -95,7 +94,6 @@ public function getGeometries(): Collection
9594

9695
/**
9796
* @param int $offset
98-
*
9997
* @return bool
10098
*/
10199
public function offsetExists($offset): bool
@@ -105,7 +103,6 @@ public function offsetExists($offset): bool
105103

106104
/**
107105
* @param int $offset
108-
*
109106
* @return TGeometry|null
110107
*/
111108
public function offsetGet($offset): ?Geometry

src/Objects/MultiLineString.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ class MultiLineString extends GeometryCollection
1818

1919
/**
2020
* @param bool $withFunction
21-
*
2221
* @return string
2322
*
2423
* @phpcsSuppress SlevomatCodingStandard.Functions.UnusedParameter

src/Objects/MultiPoint.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ class MultiPoint extends PointCollection
1010

1111
/**
1212
* @param bool $withFunction
13-
*
1413
* @return string
1514
*
1615
* @phpcsSuppress SlevomatCodingStandard.Functions.UnusedParameter

src/Objects/MultiPolygon.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ class MultiPolygon extends GeometryCollection
1818

1919
/**
2020
* @param bool $withFunction
21-
*
2221
* @return string
2322
*
2423
* @phpcsSuppress SlevomatCodingStandard.Functions.UnusedParameter

0 commit comments

Comments
 (0)