Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ Security - in case of vulnerabilities.

_TBD_

## [1.0.1] 2018-12-27

### Changed

- Enable strict type mode for all classes (#7)

## [1.0.0] 2018-12-23

Initial release.
2 changes: 2 additions & 0 deletions src/BadFunctionCallException.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
* {@see https://github.com/zee/ Zee Project (c)}
*/

declare(strict_types=1);

namespace Zee\Exceptions;

class BadFunctionCallException extends \BadFunctionCallException implements InformativeException
Expand Down
2 changes: 2 additions & 0 deletions src/BadMethodCallException.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
* {@see https://github.com/zee/ Zee Project (c)}
*/

declare(strict_types=1);

namespace Zee\Exceptions;

class BadMethodCallException extends \BadMethodCallException implements InformativeException
Expand Down
2 changes: 2 additions & 0 deletions src/DomainException.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
* {@see https://github.com/zee/ Zee Project (c)}
*/

declare(strict_types=1);

namespace Zee\Exceptions;

class DomainException extends \DomainException implements InformativeException
Expand Down
2 changes: 2 additions & 0 deletions src/InformativeException.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
* {@see https://github.com/zee/ Zee Project (c)}
*/

declare(strict_types=1);

namespace Zee\Exceptions;

/**
Expand Down
2 changes: 2 additions & 0 deletions src/InvalidArgumentException.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
* {@see https://github.com/zee/ Zee Project (c)}
*/

declare(strict_types=1);

namespace Zee\Exceptions;

class InvalidArgumentException extends \InvalidArgumentException implements InformativeException
Expand Down
2 changes: 2 additions & 0 deletions src/LengthException.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
* {@see https://github.com/zee/ Zee Project (c)}
*/

declare(strict_types=1);

namespace Zee\Exceptions;

class LengthException extends \LengthException implements InformativeException
Expand Down
2 changes: 2 additions & 0 deletions src/LogicException.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
* {@see https://github.com/zee/ Zee Project (c)}
*/

declare(strict_types=1);

namespace Zee\Exceptions;

class LogicException extends \LogicException implements InformativeException
Expand Down
2 changes: 2 additions & 0 deletions src/OutOfBoundsException.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
* {@see https://github.com/zee/ Zee Project (c)}
*/

declare(strict_types=1);

namespace Zee\Exceptions;

class OutOfBoundsException extends \OutOfBoundsException implements InformativeException
Expand Down
2 changes: 2 additions & 0 deletions src/OutOfRangeException.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
* {@see https://github.com/zee/ Zee Project (c)}
*/

declare(strict_types=1);

namespace Zee\Exceptions;

class OutOfRangeException extends \OutOfRangeException implements InformativeException
Expand Down
2 changes: 2 additions & 0 deletions src/OverflowException.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
* {@see https://github.com/zee/ Zee Project (c)}
*/

declare(strict_types=1);

namespace Zee\Exceptions;

class OverflowException extends \OverflowException implements InformativeException
Expand Down
2 changes: 2 additions & 0 deletions src/RangeException.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
* {@see https://github.com/zee/ Zee Project (c)}
*/

declare(strict_types=1);

namespace Zee\Exceptions;

class RangeException extends \RangeException implements InformativeException
Expand Down
2 changes: 2 additions & 0 deletions src/RuntimeException.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
* {@see https://github.com/zee/ Zee Project (c)}
*/

declare(strict_types=1);

namespace Zee\Exceptions;

class RuntimeException extends \RuntimeException implements InformativeException
Expand Down
2 changes: 2 additions & 0 deletions src/ThrowableContextTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
* {@see https://github.com/zee/ Zee Project (c)}
*/

declare(strict_types=1);

namespace Zee\Exceptions;

trait ThrowableContextTrait
Expand Down
2 changes: 2 additions & 0 deletions src/UnderflowException.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
* {@see https://github.com/zee/ Zee Project (c)}
*/

declare(strict_types=1);

namespace Zee\Exceptions;

class UnderflowException extends \UnderflowException implements InformativeException
Expand Down
2 changes: 2 additions & 0 deletions src/UnexpectedValueException.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
* {@see https://github.com/zee/ Zee Project (c)}
*/

declare(strict_types=1);

namespace Zee\Exceptions;

class UnexpectedValueException extends \UnexpectedValueException implements InformativeException
Expand Down
2 changes: 2 additions & 0 deletions tests/ReadExceptionContextTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
* {@see https://github.com/zee/ Zee Project (c)}
*/

declare(strict_types=1);

namespace Zee\Exceptions\Tests;

use PHPUnit\Framework\TestCase;
Expand Down