Home
last modified time | relevance | path

Searched refs:createdAt (Results 26 – 37 of 37) sorted by last modified time

12

/plugin/findologicxmlexport/vendor/jms/serializer/doc/reference/
H A Dannotations.rst448 private $createdAt;
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Fixtures/
H A DObjectWithXmlNamespaces.php31 private $createdAt; variable in JMS\\Serializer\\Tests\\Fixtures\\ObjectWithXmlNamespaces
51 public function __construct($title, $author, \DateTime $createdAt, $language) argument
55 $this->createdAt = $createdAt;
57 $this->etag = sha1($this->createdAt->format(\DateTime::ATOM));
H A DObjectWithXmlRootNamespace.php25 private $createdAt; variable in JMS\\Serializer\\Tests\\Fixtures\\ObjectWithXmlRootNamespace
44 public function __construct($title, $author, \DateTime $createdAt, $language) argument
48 $this->createdAt = $createdAt;
50 $this->etag = sha1($this->createdAt->format(\DateTime::ATOM));
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Metadata/Driver/
H A DDoctrinePHPCRDriverTest.php78 if (abs($doctrineMetadata->createdAt - $plainMetadata->createdAt) < 2) {
79 $plainMetadata->createdAt = $doctrineMetadata->createdAt;
H A DBaseDriverTest.php66 $p = new PropertyMetadata($m->name, 'createdAt');
68 $p->serializedName = 'createdAt';
70 self::assertEquals($p, $m->propertyMetadata['createdAt']);
H A DDoctrineDriverTest.php93 if (abs($doctrineMetadata->createdAt - $plainMetadata->createdAt) < 2) {
94 $plainMetadata->createdAt = $doctrineMetadata->createdAt;
/plugin/findologicxmlexport/vendor/jms/metadata/src/
H A DMergeableClassMetadata.php20 if ($object->createdAt < $this->createdAt) {
21 $this->createdAt = $object->createdAt;
/plugin/findologicxmlexport/vendor/jms/metadata/tests/
H A DMergeableClassMetadataTest.php18 $parentMetadata->createdAt = 2;
24 $childMetadata->createdAt = 1;
31 $this->assertEquals(1, $parentMetadata->createdAt);
/plugin/findologicxmlexport/vendor/jms/serializer/doc/cookbook/
H A Dexclusion_strategies.rst112 private $createdAt;
125 //will output $id, $title, $nbComments and $createdAt.
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Fixtures/Doctrine/
H A DBlogPost.php46 private $createdAt; variable in JMS\\Serializer\\Tests\\Fixtures\\Doctrine\\BlogPost
82 public function __construct($title, Author $author, \DateTime $createdAt) argument
88 $this->createdAt = $createdAt;
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Fixtures/DoctrinePHPCR/
H A DBlogPost.php42 private $createdAt; variable in JMS\\Serializer\\Tests\\Fixtures\\DoctrinePHPCR\\BlogPost
69 public function __construct($title, Author $author, \DateTime $createdAt) argument
75 $this->createdAt = $createdAt;
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/
H A DXmlSerializationTest.php390 …self::assertEquals('2011-07-30T00:00:00+00:00', $this->getField($deserialized, 'createdAt')->forma…

12