Knp\Bundle\KnpBundlesBundle\Entity\Bundle::markAsCreated PHP Метод

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

public markAsCreated ( )
    public function markAsCreated()
    {
        $this->updatedAt = new \DateTime();
        if (!$this->createdAt) {
            $this->createdAt = $this->updatedAt;
        }
    }