for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by PhpStorm.
* User: DIEU
* Date: 10/05/2017
* Time: 02:24
*/
namespace Starkerxp\StructureBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
trait TimestampTrait
{
* @var \DateTime
*
* @ORM\Column(name="created_at", type="datetime")
protected $createdAt;
* @ORM\Column(name="updated_at", type="datetime", nullable=true)
protected $updatedAt;
public function getCreatedAt()
return $this->createdAt;
}
public function setCreatedAt($createdAt)
$this->createdAt = $createdAt;
public function getUpdatedAt()
return $this->updatedAt;
public function setUpdatedAt($updatedAt)
$this->updatedAt = $updatedAt;
This check marks files that end in a newline character, i.e. an empy line.
This check marks files that end in a newline character, i.e. an empy line.