22 lines
462 B
PHP
22 lines
462 B
PHP
<?php
|
|
|
|
namespace App\Backend;
|
|
|
|
abstract class BaseHierarchyBackend extends BaseBackend
|
|
{
|
|
public function __construct(string $className)
|
|
{
|
|
parent::__construct($className);
|
|
}
|
|
//ContentField
|
|
final public function getContentField()
|
|
{
|
|
return $this->_model->getContentField();
|
|
}
|
|
//Reply관련
|
|
public function reply($entity, array $fieldDatas)
|
|
{
|
|
return $this->_model->reply($entity, $fieldDatas);
|
|
}
|
|
}
|