propelorm / Propel2

Propel2 is an open-source high-performance Object-Relational Mapping (ORM) for modern PHP
http://propelorm.org/
MIT License
1.26k stars 399 forks source link

Use non deprecated ISO-8601 format #1808

Closed dereuromark closed 2 years ago

dereuromark commented 2 years ago
/**
 * This format is not compatible with ISO-8601, but is left this way for backward compatibility reasons.
 * Use DateTime::ATOM or DATE_ATOM for compatibility with ISO-8601 instead.
 * @since 7.2
 * @deprecated
 */
public const ISO8601 = 'Y-m-d\TH:i:sO';

which is being used right now in propel.

We should be using *ATOM then then as suggested instead.