Boundaries.php
2 years ago
Cast.php
2 years ago
Comparison.php
1 year ago
Converter.php
2 years ago
Creator.php
2 years ago
Date.php
1 month ago
DeprecatedProperties.php
2 years ago
Difference.php
2 years ago
IntervalRounding.php
2 years ago
IntervalStep.php
2 years ago
Localization.php
1 month ago
Macro.php
2 years ago
MagicParameter.php
2 years ago
Mixin.php
2 years ago
Modifiers.php
2 years ago
Mutability.php
2 years ago
ObjectInitialisation.php
2 years ago
Options.php
1 year ago
Rounding.php
2 years ago
Serialization.php
2 years ago
Test.php
1 month ago
Timestamp.php
1 month ago
ToStringFormat.php
2 years ago
Units.php
2 years ago
Week.php
2 years ago
Mutability.php
65 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * This file is part of the Carbon package. |
| 5 | * |
| 6 | * (c) Brian Nesbitt <brian@nesbot.com> |
| 7 | * |
| 8 | * For the full copyright and license information, please view the LICENSE |
| 9 | * file that was distributed with this source code. |
| 10 | */ |
| 11 | namespace IAWPSCOPED\Carbon\Traits; |
| 12 | |
| 13 | use IAWPSCOPED\Carbon\Carbon; |
| 14 | use IAWPSCOPED\Carbon\CarbonImmutable; |
| 15 | /** |
| 16 | * Trait Mutability. |
| 17 | * |
| 18 | * Utils to know if the current object is mutable or immutable and convert it. |
| 19 | * @internal |
| 20 | */ |
| 21 | trait Mutability |
| 22 | { |
| 23 | use Cast; |
| 24 | /** |
| 25 | * Returns true if the current class/instance is mutable. |
| 26 | * |
| 27 | * @return bool |
| 28 | */ |
| 29 | public static function isMutable() |
| 30 | { |
| 31 | return \false; |
| 32 | } |
| 33 | /** |
| 34 | * Returns true if the current class/instance is immutable. |
| 35 | * |
| 36 | * @return bool |
| 37 | */ |
| 38 | public static function isImmutable() |
| 39 | { |
| 40 | return !static::isMutable(); |
| 41 | } |
| 42 | /** |
| 43 | * Return a mutable copy of the instance. |
| 44 | * |
| 45 | * @return Carbon |
| 46 | */ |
| 47 | public function toMutable() |
| 48 | { |
| 49 | /** @var Carbon $date */ |
| 50 | $date = $this->cast(Carbon::class); |
| 51 | return $date; |
| 52 | } |
| 53 | /** |
| 54 | * Return a immutable copy of the instance. |
| 55 | * |
| 56 | * @return CarbonImmutable |
| 57 | */ |
| 58 | public function toImmutable() |
| 59 | { |
| 60 | /** @var CarbonImmutable $date */ |
| 61 | $date = $this->cast(CarbonImmutable::class); |
| 62 | return $date; |
| 63 | } |
| 64 | } |
| 65 |