ascvh@#%(^-^)V ?host,ip,port,protocol,title,domain,country,city,link,org ???à JFIF x x ?? C ?? C ?à " ?? ?? μ } !1AQa "q2?‘?#B±áR?e$3br? %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz??…???‰?’“”?–—???¢£¤¥|§¨?a23′μ?·?1o??????èéêòó???×?ùúáa?????èéê?òó???÷?ùú?? ?? μ w !1AQ aq"2?B‘?±á #3Rebr?{
File "AbstractModel.php"
Full Path: /home/zcziejy/ryadselyen/plugins/smart-slider-3/Nextend/Framework/Model/AbstractModel.php
File size: 395 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Nextend\Framework\Model;
use Nextend\Framework\Pattern\MVCHelperTrait;
abstract class AbstractModel {
use MVCHelperTrait;
/**
* AbstractModel constructor.
*
* @param MVCHelperTrait $helper
*/
public function __construct($helper) {
$this->setMVCHelper($helper);
$this->init();
}
protected function init() {
}
}