/var/www/flurhymez/vendor/nesbot/carbon/src/Carbon/Doctrine
NameSizeModeActions
CarbonDoctrineType.php5900644editdlrm
CarbonImmutableType.php7100644editdlrm
CarbonType.php6820644editdlrm
CarbonTypeConverter.php27760644editdlrm
DateTimeDefaultPrecision.php7670644editdlrm
DateTimeImmutableType.php5950644editdlrm
DateTimeType.php3850644editdlrm
Edit: /var/www/flurhymez/vendor/nesbot/carbon/src/Carbon/Doctrine/DateTimeDefaultPrecision.php (767B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Doctrine; class DateTimeDefaultPrecision { private static $precision = 6; /** * Change the default Doctrine datetime and datetime_immutable precision. * * @param int $precision */ public static function set(int $precision): void { self::$precision = $precision; } /** * Get the default Doctrine datetime and datetime_immutable precision. * * @return int */ public static function get(): int { return self::$precision; } }