Skip to content

Commit

Permalink
Merge pull request #1 from longitude-one/quality-tools
Browse files Browse the repository at this point in the history
Quality tools added, code optimized.
  • Loading branch information
Alexandre-T authored Apr 8, 2024
2 parents f7f55ae + 643a40e commit 6bfc7b3
Show file tree
Hide file tree
Showing 22 changed files with 5,102 additions and 5,382 deletions.
29 changes: 7 additions & 22 deletions lib/LongitudeOne/Geo/WKB/Exception/ExceptionInterface.php
Original file line number Diff line number Diff line change
@@ -1,35 +1,20 @@
<?php

/**
* Copyright (C) 2015 Derek J. Lambert
* This file is part of the LongitudeOne WKB-Parser project.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
* PHP 8.1 | 8.2 | 8.3
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
* Copyright LongitudeOne - Alexandre Tranchant - Derek J. Lambert.
* Copyright 2024.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/

namespace LongitudeOne\Geo\WKB\Exception;

/**
* Exception interface for library exceptions
*
* @author Derek J. Lambert <[email protected]>
* @license http://dlambert.mit-license.org MIT
* Exception interface for library exceptions.
*/
interface ExceptionInterface
interface ExceptionInterface extends \Throwable
{

}
27 changes: 6 additions & 21 deletions lib/LongitudeOne/Geo/WKB/Exception/InvalidArgumentException.php
Original file line number Diff line number Diff line change
@@ -1,35 +1,20 @@
<?php

/**
* Copyright (C) 2015 Derek J. Lambert
* This file is part of the LongitudeOne WKB-Parser project.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
* PHP 8.1 | 8.2 | 8.3
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
* Copyright LongitudeOne - Alexandre Tranchant - Derek J. Lambert.
* Copyright 2024.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/

namespace LongitudeOne\Geo\WKB\Exception;

/**
* InvalidArgumentException
*
* @author Derek J. Lambert <[email protected]>
* @license http://dlambert.mit-license.org MIT
* InvalidArgumentException.
*/
class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface
{

}
27 changes: 6 additions & 21 deletions lib/LongitudeOne/Geo/WKB/Exception/RangeException.php
Original file line number Diff line number Diff line change
@@ -1,35 +1,20 @@
<?php

/**
* Copyright (C) 2015 Derek J. Lambert
* This file is part of the LongitudeOne WKB-Parser project.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
* PHP 8.1 | 8.2 | 8.3
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
* Copyright LongitudeOne - Alexandre Tranchant - Derek J. Lambert.
* Copyright 2024.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/

namespace LongitudeOne\Geo\WKB\Exception;

/**
* RangeException
*
* @author Derek J. Lambert <[email protected]>
* @license http://dlambert.mit-license.org MIT
* RangeException.
*/
class RangeException extends \RangeException implements ExceptionInterface
{

}
27 changes: 6 additions & 21 deletions lib/LongitudeOne/Geo/WKB/Exception/UnexpectedValueException.php
Original file line number Diff line number Diff line change
@@ -1,35 +1,20 @@
<?php

/**
* Copyright (C) 2015 Derek J. Lambert
* This file is part of the LongitudeOne WKB-Parser project.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
* PHP 8.1 | 8.2 | 8.3
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
* Copyright LongitudeOne - Alexandre Tranchant - Derek J. Lambert.
* Copyright 2024.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/

namespace LongitudeOne\Geo\WKB\Exception;

/**
* UnexpectedValueException
*
* @author Derek J. Lambert <[email protected]>
* @license http://dlambert.mit-license.org MIT
* UnexpectedValueException.
*/
class UnexpectedValueException extends \UnexpectedValueException implements ExceptionInterface
{

}
Loading

0 comments on commit 6bfc7b3

Please sign in to comment.