for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Starkerxp\StructureBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\MappedSuperclass
*/
abstract class UserArchiveEntity extends UserEntity implements ArchiveInterface
{
* @var boolean
*
* @ORM\Column(name="is_archive", type="boolean", nullable=true, options={"default":0})
protected $archive = false;
public function isArchive()
return $this->archive;
}
public function setArchive($archive)
$this->archive = $archive;
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.