-
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
d3459ef
commit 4c22053
Showing
64 changed files
with
1,241 additions
and
149 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
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 TimeIsAfter extends \InvalidArgumentException | ||
{ | ||
public function __construct() | ||
{ | ||
parent::__construct('The time 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 TimeIsAfterOrEqualTo extends \InvalidArgumentException | ||
{ | ||
public function __construct() | ||
{ | ||
parent::__construct('The time 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 TimeIsBefore extends \InvalidArgumentException | ||
{ | ||
public function __construct() | ||
{ | ||
parent::__construct('The time 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 TimeIsBeforeOrEqualTo extends \InvalidArgumentException | ||
{ | ||
public function __construct() | ||
{ | ||
parent::__construct('The time 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 TimeIsEqualTo extends \InvalidArgumentException | ||
{ | ||
public function __construct() | ||
{ | ||
parent::__construct('The time 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 TimeIsNotAfter extends \InvalidArgumentException | ||
{ | ||
public function __construct() | ||
{ | ||
parent::__construct('The time 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 TimeIsNotAfterOrEqualTo extends \InvalidArgumentException | ||
{ | ||
public function __construct() | ||
{ | ||
parent::__construct('The time 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 TimeIsNotBefore extends \InvalidArgumentException | ||
{ | ||
public function __construct() | ||
{ | ||
parent::__construct('The time 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 TimeIsNotBeforeOrEqualTo extends \InvalidArgumentException | ||
{ | ||
public function __construct() | ||
{ | ||
parent::__construct('The time 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 TimeIsNotEqualTo extends \InvalidArgumentException | ||
{ | ||
public function __construct() | ||
{ | ||
parent::__construct('The time is not equal 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
Oops, something went wrong.