diff --git a/src/Timezone.php b/src/Timezone.php index 6ba98a6..63ed517 100644 --- a/src/Timezone.php +++ b/src/Timezone.php @@ -107,9 +107,7 @@ public function now(): CarbonInterface */ public function date($value, callable $maker = null): CarbonInterface { - return $this->convertToCurrent( - $this->makeDateWithStorage($value, $maker) - ); + return $this->makeDateWithCurrent($value, $maker); } /** @@ -121,9 +119,7 @@ public function date($value, callable $maker = null): CarbonInterface */ public function store($value, callable $maker = null): CarbonInterface { - return $this->convertToStorage( - $this->makeDateWithCurrent($value, $maker) - ); + return $this->makeDateWithStorage($value, $maker); } /**