Home
last modified time | relevance | path

Searched refs:DateTimeImmutable (Results 1 – 25 of 55) sorted by path

123

/plugin/authgooglesheets/vendor/monolog/monolog/
H A DCHANGELOG.md49 * Fixed SyslogUdpHandler not setting the timezone correctly on DateTimeImmutable instances (#1540)
142 …* Added DateTimeImmutable support, all record datetime are now immutable, and will toString/json s…
H A DUPGRADE.md13 - The `datetime` in every record array is now a DateTimeImmutable, not that you
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/
H A DDateTimeImmutable.php22 class DateTimeImmutable extends \DateTimeImmutable implements \JsonSerializable class
H A DLogger.php311 … 'datetime' => new DateTimeImmutable($this->microsecondTimestamps, $this->timezone),
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Formatter/
H A DNormalizerFormatter.php14 use Monolog\DateTimeImmutable; alias
263 if ($this->dateFormat === self::SIMPLE_DATE && $date instanceof DateTimeImmutable) {
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DChromePHPHandler.php162 'datetime' => new \DateTimeImmutable(),
H A DMandrillHandler.php64 $message->setDate(new \DateTimeImmutable());
H A DRotatingFileHandler.php56 $this->nextRotation = new \DateTimeImmutable('tomorrow');
135 $this->nextRotation = new \DateTimeImmutable('tomorrow');
H A DSwiftMailerHandler.php104 $message->setDate(new \DateTimeImmutable());
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Processor/
H A DPsrLogMessageProcessor.php62 if (!$this->dateFormat && $val instanceof \Monolog\DateTimeImmutable) {
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Test/
H A DTestCase.php15 use Monolog\DateTimeImmutable; alias
44 'datetime' => new DateTimeImmutable(true),
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/File/
H A DX509.php1135 $date = new \DateTimeImmutable('now', new \DateTimeZone(@date_default_timezone_get()));
1145 $date = new \DateTimeImmutable($date, new \DateTimeZone(@date_default_timezone_get()));
1148 … $notBefore = new \DateTimeImmutable($notBefore, new \DateTimeZone(@date_default_timezone_get()));
1149 … $notAfter = new \DateTimeImmutable($notAfter, new \DateTimeZone(@date_default_timezone_get()));
2582 $dateObj = new \DateTimeImmutable($date, new \DateTimeZone('GMT'));
2658 … $startDate = new \DateTimeImmutable('now', new \DateTimeZone(@date_default_timezone_get()));
2661 … $endDate = new \DateTimeImmutable('+1 year', new \DateTimeZone(@date_default_timezone_get()));
2926 … $thisUpdate = new \DateTimeImmutable('now', new \DateTimeZone(@date_default_timezone_get()));
3106 $date = new \DateTimeImmutable($date, new \DateTimeZone(@date_default_timezone_get()));
3133 … $date = new \DateTimeImmutable($date, new \DateTimeZone(@date_default_timezone_get()));
[all …]
/plugin/combo/vendor/dragonmantank/cron-expression/
H A DCHANGELOG.md22 - Supports DateTimeImmutable for newer PHP verions
/plugin/combo/vendor/dragonmantank/cron-expression/src/Cron/
H A DCronExpression.php6 use DateTimeImmutable; alias
291 } elseif ($currentTime instanceof DateTimeImmutable) {
326 } elseif ($currentTime instanceof DateTimeImmutable) {
/plugin/combo/vendor/symfony/yaml/
H A DCHANGELOG.md191 * `\DateTime` and `\DateTimeImmutable` objects are dumped as YAML timestamps.
/plugin/countdown/
H A Dsyntax.php70 $Hoy= new DateTimeImmutable();
71 $Next= new DateTimeImmutable($dest);
/plugin/findologicxmlexport/vendor/jms/serializer/
H A DCHANGELOG.md543 - Add DateTimeImmutable support to DateHandler [\#543](https://github.com/schmittjoh/serializer/iss…
636 - Issue543 - Adding DateTimeImmutable support [\#635](https://github.com/schmittjoh/serializer/pull…
/plugin/findologicxmlexport/vendor/jms/serializer/doc/reference/
H A Dannotations.rst363 | DateTimeImmutable | PHP's DateTimeImmutable object (defaul…
366 | DateTimeImmutable<'format'> | PHP's DateTimeImmutable object (custom…
369 | DateTimeImmutable<'format', 'zone'> | PHP's DateTimeImmutable object (custom…
372 | DateTimeImmutable<'format', 'zone', 'deserializeFormat'> | PHP's DateTimeImmutable object (custom…
446 * @Type("DateTimeImmutable")
451 * @Type("DateTimeImmutable<'Y-m-d'>")
/plugin/findologicxmlexport/vendor/jms/serializer/src/Handler/
H A DDateHandler.php108 \DateTimeImmutable $date,
228 $datetime = \DateTimeImmutable::createFromFormat($format, (string) $data, $timezone);
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/
H A DBaseSerializationTest.php600 new \DateTimeImmutable('2047-01-01 12:47:47', new \DateTimeZone('UTC')),
601 new \DateTimeImmutable('2016-12-05 00:00:00', new \DateTimeZone('UTC')),
674 …['date_time_immutable', new \DateTimeImmutable('2011-08-30 00:00', new \DateTimeZone('UTC')), 'Dat…
/plugin/findologicxmlexport/vendor/jms/serializer/tests/
H A DSerializerBuilderTest.php79 self::assertInstanceOf(\DateTimeImmutable::class, $result);
/plugin/findologicxmlexport/vendor/sebastian/comparator/tests/
H A DDateTimeComparatorTest.php14 use DateTimeImmutable; alias
202 $this->assertTrue($this->comparator->accepts(new DateTime, new DateTimeImmutable));
213 new DateTimeImmutable('2013-03-29 04:13:35', new DateTimeZone('America/New_York'))
/plugin/findologicxmlexport/vendor/symfony/yaml/
H A DCHANGELOG.md138 * `\DateTime` and `\DateTimeImmutable` objects are dumped as YAML timestamps.
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/
H A DInlineTest.php598 … $dateTime = new \DateTimeImmutable('2001-07-15 21:59:43', new \DateTimeZone('Europe/Berlin'));
/plugin/findologicxmlexport/vendor/twig/twig/
H A DCHANGELOG371 * fixed date_modify when working with DateTimeImmutable

123