Exceptions
1 month ago
Facades
1 month ago
Testing
1 month ago
Traits
1 month ago
AggregateServiceProvider.php
2 years ago
Benchmark.php
1 month ago
Carbon.php
1 month ago
Composer.php
1 month ago
ConfigurationUrlParser.php
1 month ago
DateFactory.php
1 month ago
Env.php
1 month ago
Fluent.php
1 month ago
HigherOrderTapProxy.php
2 years ago
HtmlString.php
2 years ago
InteractsWithTime.php
2 years ago
Js.php
1 month ago
Lottery.php
1 month ago
Manager.php
2 years ago
MessageBag.php
1 month ago
MultipleInstanceManager.php
1 month ago
NamespacedItemResolver.php
1 month ago
Optional.php
1 month ago
Pluralizer.php
1 month ago
ProcessUtils.php
1 month ago
Reflector.php
1 month ago
ServiceProvider.php
2 years ago
Str.php
1 month ago
Stringable.php
1 month ago
Timebox.php
1 month ago
ValidatedInput.php
1 month ago
ViewErrorBag.php
1 month ago
helpers.php
1 month ago
Carbon.php
21 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWPSCOPED\Illuminate\Support; |
| 4 | |
| 5 | use IAWPSCOPED\Carbon\Carbon as BaseCarbon; |
| 6 | use IAWPSCOPED\Carbon\CarbonImmutable as BaseCarbonImmutable; |
| 7 | use IAWPSCOPED\Illuminate\Support\Traits\Conditionable; |
| 8 | /** @internal */ |
| 9 | class Carbon extends BaseCarbon |
| 10 | { |
| 11 | use Conditionable; |
| 12 | /** |
| 13 | * {@inheritdoc} |
| 14 | */ |
| 15 | public static function setTestNow($testNow = null) |
| 16 | { |
| 17 | BaseCarbon::setTestNow($testNow); |
| 18 | BaseCarbonImmutable::setTestNow($testNow); |
| 19 | } |
| 20 | } |
| 21 |