Skip to content

Commit

Permalink
Merge branch 'release/0.9.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
pprkut committed Aug 6, 2024
2 parents 05950ca + 18cf690 commit 17e4c00
Show file tree
Hide file tree
Showing 79 changed files with 158 additions and 176 deletions.
1 change: 0 additions & 1 deletion src/Lunr/Core/Tests/IniTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@

use Lunr\Core\Ini;
use Lunr\Halo\LunrBaseTest;
use ReflectionClass;

/**
* This class contains common setup routines, providers
Expand Down
2 changes: 1 addition & 1 deletion src/Lunr/Corona/Exceptions/BadGatewayException.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

namespace Lunr\Corona\Exceptions;

use Lunr\Corona\HttpCode;
use Exception;
use Lunr\Corona\HttpCode;

/**
* Exception for the BadGateway HTTP error (502).
Expand Down
2 changes: 1 addition & 1 deletion src/Lunr/Corona/Exceptions/BadRequestException.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

namespace Lunr\Corona\Exceptions;

use Lunr\Corona\HttpCode;
use Exception;
use Lunr\Corona\HttpCode;

/**
* Exception for the Bad Request HTTP error (400).
Expand Down
2 changes: 1 addition & 1 deletion src/Lunr/Corona/Exceptions/ConflictException.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

namespace Lunr\Corona\Exceptions;

use Lunr\Corona\HttpCode;
use Exception;
use Lunr\Corona\HttpCode;

/**
* Exception for the Conflict HTTP error (409).
Expand Down
2 changes: 1 addition & 1 deletion src/Lunr/Corona/Exceptions/ExpectationFailedException.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

namespace Lunr\Corona\Exceptions;

use Lunr\Corona\HttpCode;
use Exception;
use Lunr\Corona\HttpCode;

/**
* Exception for the Expectation Failed HTTP error (417).
Expand Down
2 changes: 1 addition & 1 deletion src/Lunr/Corona/Exceptions/FailedDependencyException.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

namespace Lunr\Corona\Exceptions;

use Lunr\Corona\HttpCode;
use Exception;
use Lunr\Corona\HttpCode;

/**
* Exception for the Failed Dependency HTTP error (424).
Expand Down
2 changes: 1 addition & 1 deletion src/Lunr/Corona/Exceptions/ForbiddenException.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

namespace Lunr\Corona\Exceptions;

use Lunr\Corona\HttpCode;
use Exception;
use Lunr\Corona\HttpCode;

/**
* Exception for the Forbidden HTTP error (403).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

namespace Lunr\Corona\Exceptions;

use Lunr\Corona\HttpCode;
use Exception;
use Lunr\Corona\HttpCode;

/**
* Exception for the InternalServerError HTTP error (500).
Expand Down
2 changes: 1 addition & 1 deletion src/Lunr/Corona/Exceptions/NotFoundException.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

namespace Lunr\Corona\Exceptions;

use Lunr\Corona\HttpCode;
use Exception;
use Lunr\Corona\HttpCode;

/**
* Exception for the Not Found HTTP error (404).
Expand Down
2 changes: 1 addition & 1 deletion src/Lunr/Corona/Exceptions/NotImplementedException.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

namespace Lunr\Corona\Exceptions;

use Lunr\Corona\HttpCode;
use Exception;
use Lunr\Corona\HttpCode;

/**
* Exception for the Not Implemented HTTP error (501).
Expand Down
2 changes: 1 addition & 1 deletion src/Lunr/Corona/Exceptions/PreconditionFailedException.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

namespace Lunr\Corona\Exceptions;

use Lunr\Corona\HttpCode;
use Exception;
use Lunr\Corona\HttpCode;

/**
* Exception for the Precondition Failed HTTP error (412).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

namespace Lunr\Corona\Exceptions;

use Lunr\Corona\HttpCode;
use Exception;
use Lunr\Corona\HttpCode;

/**
* Exception for the Requested Range Not Satisfiable HTTP error (416).
Expand Down
4 changes: 2 additions & 2 deletions src/Lunr/Corona/Exceptions/Tests/BadGatewayExceptionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@

namespace Lunr\Corona\Exceptions\Tests;

use Exception;
use Lunr\Corona\Exceptions\BadGatewayException;
use Lunr\Halo\LunrBaseTest;
use Exception;

/**
* This class contains common setup routines, providers
Expand All @@ -24,7 +24,7 @@ abstract class BadGatewayExceptionTest extends LunrBaseTest

/**
* Previous exception.
* @var \Exception
* @var Exception
*/
protected $previous;

Expand Down
4 changes: 2 additions & 2 deletions src/Lunr/Corona/Exceptions/Tests/BadRequestExceptionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@

namespace Lunr\Corona\Exceptions\Tests;

use Exception;
use Lunr\Corona\Exceptions\BadRequestException;
use Lunr\Halo\LunrBaseTest;
use Exception;

/**
* This class contains common setup routines, providers
Expand All @@ -24,7 +24,7 @@ abstract class BadRequestExceptionTest extends LunrBaseTest

/**
* Previous exception.
* @var \Exception
* @var Exception
*/
protected $previous;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,9 @@

namespace Lunr\Corona\Exceptions\Tests;

use Exception;
use Lunr\Corona\Exceptions\ClientDataHttpException;
use Lunr\Halo\LunrBaseTest;
use Exception;
use ReflectionClass;

/**
* This class contains common setup routines, providers
Expand All @@ -25,7 +24,7 @@ abstract class ClientDataHttpExceptionTest extends LunrBaseTest

/**
* Previous exception.
* @var \Exception
* @var Exception
*/
protected $previous;

Expand Down
4 changes: 2 additions & 2 deletions src/Lunr/Corona/Exceptions/Tests/ConflictExceptionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@

namespace Lunr\Corona\Exceptions\Tests;

use Exception;
use Lunr\Corona\Exceptions\ConflictException;
use Lunr\Halo\LunrBaseTest;
use Exception;

/**
* This class contains common setup routines, providers
Expand All @@ -24,7 +24,7 @@ abstract class ConflictExceptionTest extends LunrBaseTest

/**
* Previous exception.
* @var \Exception
* @var Exception
*/
protected $previous;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@

namespace Lunr\Corona\Exceptions\Tests;

use Exception;
use Lunr\Corona\Exceptions\FailedDependencyException;
use Lunr\Halo\LunrBaseTest;
use Exception;

/**
* This class contains common setup routines, providers
Expand All @@ -24,7 +24,7 @@ abstract class FailedDependencyExceptionTest extends LunrBaseTest

/**
* Previous exception.
* @var \Exception
* @var Exception
*/
protected $previous;

Expand Down
4 changes: 2 additions & 2 deletions src/Lunr/Corona/Exceptions/Tests/ForbiddenExceptionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@

namespace Lunr\Corona\Exceptions\Tests;

use Exception;
use Lunr\Corona\Exceptions\ForbiddenException;
use Lunr\Halo\LunrBaseTest;
use Exception;

/**
* This class contains common setup routines, providers
Expand All @@ -24,7 +24,7 @@ abstract class ForbiddenExceptionTest extends LunrBaseTest

/**
* Previous exception.
* @var \Exception
* @var Exception
*/
protected $previous;

Expand Down
5 changes: 2 additions & 3 deletions src/Lunr/Corona/Exceptions/Tests/HttpExceptionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,9 @@

namespace Lunr\Corona\Exceptions\Tests;

use Exception;
use Lunr\Corona\Exceptions\HttpException;
use Lunr\Halo\LunrBaseTest;
use Exception;
use ReflectionClass;

/**
* This class contains common setup routines, providers
Expand All @@ -26,7 +25,7 @@ abstract class HttpExceptionTest extends LunrBaseTest

/**
* Previous exception.
* @var \Exception
* @var Exception
*/
protected $previous;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@

namespace Lunr\Corona\Exceptions\Tests;

use Exception;
use Lunr\Corona\Exceptions\InternalServerErrorException;
use Lunr\Halo\LunrBaseTest;
use Exception;

/**
* This class contains common setup routines, providers
Expand All @@ -24,7 +24,7 @@ abstract class InternalServerErrorExceptionTest extends LunrBaseTest

/**
* Previous exception.
* @var \Exception
* @var Exception
*/
protected $previous;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@

namespace Lunr\Corona\Exceptions\Tests;

use Exception;
use Lunr\Corona\Exceptions\MethodNotAllowedException;
use Lunr\Halo\LunrBaseTest;
use Exception;

/**
* This class contains common setup routines, providers
Expand All @@ -24,7 +24,7 @@ abstract class MethodNotAllowedExceptionTest extends LunrBaseTest

/**
* Previous exception.
* @var \Exception
* @var Exception
*/
protected $previous;

Expand Down
4 changes: 2 additions & 2 deletions src/Lunr/Corona/Exceptions/Tests/NotFoundExceptionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@

namespace Lunr\Corona\Exceptions\Tests;

use Exception;
use Lunr\Corona\Exceptions\NotFoundException;
use Lunr\Halo\LunrBaseTest;
use Exception;

/**
* This class contains common setup routines, providers
Expand All @@ -24,7 +24,7 @@ abstract class NotFoundExceptionTest extends LunrBaseTest

/**
* Previous exception.
* @var \Exception
* @var Exception
*/
protected $previous;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@

namespace Lunr\Corona\Exceptions\Tests;

use Exception;
use Lunr\Corona\Exceptions\NotImplementedException;
use Lunr\Halo\LunrBaseTest;
use Exception;

/**
* This class contains common setup routines, providers
Expand All @@ -24,7 +24,7 @@ abstract class NotImplementedExceptionTest extends LunrBaseTest

/**
* Previous exception.
* @var \Exception
* @var Exception
*/
protected $previous;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@

namespace Lunr\Corona\Exceptions\Tests;

use Exception;
use Lunr\Corona\Exceptions\PreconditionFailedException;
use Lunr\Halo\LunrBaseTest;
use Exception;

/**
* This class contains common setup routines, providers
Expand All @@ -24,7 +24,7 @@ abstract class PreconditionFailedExceptionTest extends LunrBaseTest

/**
* Previous exception.
* @var \Exception
* @var Exception
*/
protected $previous;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@

namespace Lunr\Corona\Exceptions\Tests;

use Exception;
use Lunr\Corona\Exceptions\RequestedRangeNotSatisfiableException;
use Lunr\Halo\LunrBaseTest;
use Exception;

/**
* This class contains common setup routines, providers
Expand All @@ -24,7 +24,7 @@ abstract class RequestedRangeNotSatisfiableExceptionTest extends LunrBaseTest

/**
* Previous exception.
* @var \Exception
* @var Exception
*/
protected $previous;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@

namespace Lunr\Corona\Exceptions\Tests;

use Exception;
use Lunr\Corona\Exceptions\UnauthorizedException;
use Lunr\Halo\LunrBaseTest;
use Exception;

/**
* This class contains common setup routines, providers
Expand All @@ -24,7 +24,7 @@ abstract class UnauthorizedExceptionTest extends LunrBaseTest

/**
* Previous exception.
* @var \Exception
* @var Exception
*/
protected $previous;

Expand Down
Loading

0 comments on commit 17e4c00

Please sign in to comment.