Newscoop\Entity\Article::__construct PHP Метод

__construct() публичный Метод

public __construct ( integer $number, Language $language )
$number integer
$language Language
    public function __construct($number, Language $language)
    {
        $this->number = (int) $number;
        $this->language = $language;
        $this->updated = new DateTime();
        $this->authors = new ArrayCollection();
        $this->topics = new ArrayCollection();
        $this->attachments = new ArrayCollection();
        $this->images = new ArrayCollection();
        $this->snippets = new ArrayCollection();
    }