1
0
mirror of synced 2025-02-03 05:49:25 +03:00

26 lines
408 B
PHP

<?php
namespace Doctrine\Tests\Models\DDC3699;
/**
* @MappedSuperclass
*/
abstract class DDC3699Parent
{
const CLASSNAME = __CLASS__;
/**
* @Column(type="string")
*/
protected $parentField;
public function getParentField()
{
return $this->parentField;
}
public function setParentField($parentField)
{
$this->parentField = $parentField;
}
}