b374k
m1n1 1.01
Apache/2.4.41 (Ubuntu)
Linux vmi616275.contaboserver.net 5.4.0-84-generic #94-Ubuntu SMP Thu Aug 26 20:27:37 UTC 2021 x86_64
uid=33(www-data) gid=33(www-data) groups=33(www-data)
server ip : 62.171.164.128 | your ip : 127.0.0.1
safemode OFF
 >  / home / a / home / dev2.destoffenstraat.com / vendor / jms / serializer / tests / Fixtures /
Filename/home/a/home/dev2.destoffenstraat.com/vendor/jms/serializer/tests/Fixtures/BlogPost.php
Size3.49 kb
Permissionrw-r--r--
Ownerroot : root
Create time21-Aug-2025 12:26
Last modified22-Feb-2020 21:59
Last accessed22-Aug-2025 23:09
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
<?php

namespace JMS\Serializer\Tests\Fixtures;

use Doctrine\Common\Collections\ArrayCollection;
use JMS\Serializer\Annotation\Groups;
use JMS\Serializer\Annotation\SerializedName;
use JMS\Serializer\Annotation\Type;
use JMS\Serializer\Annotation\XmlAttribute;
use JMS\Serializer\Annotation\XmlElement;
use JMS\Serializer\Annotation\XmlList;
use JMS\Serializer\Annotation\XmlMap;
use JMS\Serializer\Annotation\XmlNamespace;
use JMS\Serializer\Annotation\XmlRoot;
use PhpCollection\Map;
use PhpCollection\Sequence;

/**
* @XmlRoot("blog-post")
* @XmlNamespace(uri="http://example.com/namespace")
* @XmlNamespace(uri="http://schemas.google.com/g/2005", prefix="gd")
* @XmlNamespace(uri="http://www.w3.org/2005/Atom", prefix="atom")
* @XmlNamespace(uri="http://purl.org/dc/elements/1.1/", prefix="dc")
*/
class BlogPost
{
/**
* @Type("string")
* @XmlElement(cdata=false)
* @Groups({"comments","post"})
*/
private $id = 'what_a_nice_id';

/**
* @Type("string")
* @Groups({"comments","post"})
* @XmlElement(namespace="http://purl.org/dc/elements/1.1/");
*/
private $title;

/**
* @Type("DateTime")
* @XmlAttribute
*/
private $createdAt;

/**
* @Type("boolean")
* @SerializedName("is_published")
* @XmlAttribute
* @Groups({"post"})
*/
private $published;

/**
* @Type("bool")
* @SerializedName("is_reviewed")
* @XmlAttribute
* @Groups({"post"})
*/
private $reviewed;

/**
* @Type("string")
* @XmlAttribute(namespace="http://schemas.google.com/g/2005")
* @Groups({"post"})
*/
private $etag;

/**
* @Type("ArrayCollection<JMS\Serializer\Tests\Fixtures\Comment>")
* @XmlList(inline=true, entry="comment")
* @Groups({"comments"})
*/
private $comments;

/**
* @Type("PhpCollection\Sequence<JMS\Serializer\Tests\Fixtures\Comment>")
* @XmlList(inline=true, entry="comment2")
* @Groups({"comments"})
*/
private $comments2;

/**
* @Type("PhpCollection\Map<string,string>")
* @XmlMap(keyAttribute = "key")
*/
private $metadata;

/**
* @Type("JMS\Serializer\Tests\Fixtures\Author")
* @Groups({"post"})
* @XmlElement(namespace="http://www.w3.org/2005/Atom")
*/
private $author;

/**
* @Type("JMS\Serializer\Tests\Fixtures\Publisher")
*/
private $publisher;

/**
* @Type("array<JMS\Serializer\Tests\Fixtures\Tag>")
* @XmlList(inline=true, entry="tag", namespace="http://purl.org/dc/elements/1.1/");
*/
private $tag;

public function __construct($title, Author $author, \DateTime $createdAt, Publisher $publisher)
{
$this->title = $title;
$this->author = $author;
$this->publisher = $publisher;
$this->published = false;
$this->reviewed = false;
$this->comments = new ArrayCollection();
$this->comments2 = new Sequence();
$this->metadata = new Map();
$this->metadata->set('foo', 'bar');
$this->createdAt = $createdAt;
$this->etag = sha1($this->createdAt->format(\DateTime::ISO8601));
}

public function setPublished()
{
$this->published = true;
}

public function getMetadata()
{
return $this->metadata;
}

public function addComment(Comment $comment)
{
$this->comments->add($comment);
$this->comments2->add($comment);
}

public function addTag(Tag $tag)
{
$this->tag[] = $tag;
}
}