-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Christian Kolb <[email protected]>
- Loading branch information
1 parent
0df267f
commit bf14894
Showing
55 changed files
with
2,310 additions
and
3 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
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,18 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace DigitalCraftsman\DateTimePrecision\Exception; | ||
|
||
/** | ||
* @psalm-immutable | ||
* | ||
* @codeCoverageIgnore | ||
*/ | ||
final class MomentIsAfter extends \InvalidArgumentException | ||
{ | ||
public function __construct() | ||
{ | ||
parent::__construct('The moment is after but must not be.'); | ||
} | ||
} |
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,18 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace DigitalCraftsman\DateTimePrecision\Exception; | ||
|
||
/** | ||
* @psalm-immutable | ||
* | ||
* @codeCoverageIgnore | ||
*/ | ||
final class MomentIsAfterOrEqualTo extends \InvalidArgumentException | ||
{ | ||
public function __construct() | ||
{ | ||
parent::__construct('The moment is after or equal to but must not be.'); | ||
} | ||
} |
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,18 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace DigitalCraftsman\DateTimePrecision\Exception; | ||
|
||
/** | ||
* @psalm-immutable | ||
* | ||
* @codeCoverageIgnore | ||
*/ | ||
final class MomentIsBefore extends \InvalidArgumentException | ||
{ | ||
public function __construct() | ||
{ | ||
parent::__construct('The moment is before but must not be.'); | ||
} | ||
} |
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,18 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace DigitalCraftsman\DateTimePrecision\Exception; | ||
|
||
/** | ||
* @psalm-immutable | ||
* | ||
* @codeCoverageIgnore | ||
*/ | ||
final class MomentIsBeforeOrEqualTo extends \InvalidArgumentException | ||
{ | ||
public function __construct() | ||
{ | ||
parent::__construct('The moment is before or equal to but must not be.'); | ||
} | ||
} |
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,18 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace DigitalCraftsman\DateTimePrecision\Exception; | ||
|
||
/** | ||
* @psalm-immutable | ||
* | ||
* @codeCoverageIgnore | ||
*/ | ||
final class MomentIsEqual extends \InvalidArgumentException | ||
{ | ||
public function __construct() | ||
{ | ||
parent::__construct('The moment is equal but must not be.'); | ||
} | ||
} |
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,18 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace DigitalCraftsman\DateTimePrecision\Exception; | ||
|
||
/** | ||
* @psalm-immutable | ||
* | ||
* @codeCoverageIgnore | ||
*/ | ||
final class MomentIsNotAfter extends \InvalidArgumentException | ||
{ | ||
public function __construct() | ||
{ | ||
parent::__construct('The moment is not after but must be.'); | ||
} | ||
} |
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,18 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace DigitalCraftsman\DateTimePrecision\Exception; | ||
|
||
/** | ||
* @psalm-immutable | ||
* | ||
* @codeCoverageIgnore | ||
*/ | ||
final class MomentIsNotAfterOrEqualTo extends \InvalidArgumentException | ||
{ | ||
public function __construct() | ||
{ | ||
parent::__construct('The moment is not after or equal to but must be.'); | ||
} | ||
} |
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,18 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace DigitalCraftsman\DateTimePrecision\Exception; | ||
|
||
/** | ||
* @psalm-immutable | ||
* | ||
* @codeCoverageIgnore | ||
*/ | ||
final class MomentIsNotBefore extends \InvalidArgumentException | ||
{ | ||
public function __construct() | ||
{ | ||
parent::__construct('The moment is not before but must be.'); | ||
} | ||
} |
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,18 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace DigitalCraftsman\DateTimePrecision\Exception; | ||
|
||
/** | ||
* @psalm-immutable | ||
* | ||
* @codeCoverageIgnore | ||
*/ | ||
final class MomentIsNotBeforeOrEqualTo extends \InvalidArgumentException | ||
{ | ||
public function __construct() | ||
{ | ||
parent::__construct('The moment is not before or equal to but must be.'); | ||
} | ||
} |
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,18 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace DigitalCraftsman\DateTimePrecision\Exception; | ||
|
||
/** | ||
* @psalm-immutable | ||
* | ||
* @codeCoverageIgnore | ||
*/ | ||
final class MomentIsNotEqual extends \InvalidArgumentException | ||
{ | ||
public function __construct() | ||
{ | ||
parent::__construct('The moment is not equal but must be.'); | ||
} | ||
} |
Oops, something went wrong.