Knp\Bundle\KnpBundlesBundle\Entity\Bundle::markAsCreated PHP Method

markAsCreated() public method

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