• File: AbstractFormManager.php
  • Full Path: /home/atelipy/www/wpmain/plugins/smart-slider-3/Nextend/Framework/Form/AbstractFormManager.php
  • File size: 352 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php


namespace Nextend\Framework\Form;


use Nextend\Framework\Pattern\MVCHelperTrait;

abstract class AbstractFormManager {

    use MVCHelperTrait;

    /**
     * AbstractFormManager constructor.
     *
     * @param MVCHelperTrait $MVCHelper
     */
    public function __construct($MVCHelper) {

        $this->setMVCHelper($MVCHelper);
    }
}