コード例 #1
0
ファイル: FormatEntity.php プロジェクト: norbe/framework
	public function __construct()
	{
		parent::__construct();
		$this->crop = TRUE;
		$this->watermark = NULL;
	}
コード例 #2
0
ファイル: BaseFileEntity.php プロジェクト: norbe/framework
	public function __construct()
	{
		parent::__construct();
		$this->uploaded = new \DateTime;
	}
コード例 #3
0
ファイル: RoleEntity.php プロジェクト: norbe/framework
	public function __construct()
	{
		parent::__construct();
		$this->permissions = new ArrayCollection;
		$this->children = new ArrayCollection;
	}