-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
75-critical-unexpected-conversion-when-storing-$x-and-$y (#80)
* New interfaces: geodetic and cartesian interfaces. * Splitting geodetic and cartesian coordinates * New internal exception: RangeException * Fix #79 * Fix #76 * Fix #77 * Update full.yaml : CI updated to avoid double checks on pushes and pull-requests * Update paambaati/codeclimate-action version
- Loading branch information
1 parent
cfa9d1f
commit 79f47f9
Showing
15 changed files
with
1,245 additions
and
531 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?php | ||
/** | ||
* This file is part of the doctrine spatial extension. | ||
* | ||
* PHP 8.1 | 8.2 | 8.3 | ||
* Doctrine ORM 2.19 | 3.1 | ||
* | ||
* Copyright Alexandre Tranchant <[email protected]> 2017-2024 | ||
* Copyright Longitude One 2020-2024 | ||
* Copyright 2015 Derek J. Lambert | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
* | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace LongitudeOne\Spatial\Exception; | ||
|
||
/** | ||
* Range Exception class. | ||
* | ||
* This exception is thrown when a geodesic coordinate is out of range. | ||
* | ||
* @internal the library uses this exception internally and is always caught to throw a more explicit InvalidValueException | ||
*/ | ||
final class RangeException extends \Exception implements ExceptionInterface | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.