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?{ gilour
<?php namespace Nextend\Framework\Model; use Nextend\Framework\Database\AbstractPlatformConnectorTable; abstract class AbstractModelTable extends AbstractModel { /** * @var AbstractPlatformConnectorTable */ protected $table; protected function init() { $this->table = $this->createConnectorTable(); } /** * @return AbstractPlatformConnectorTable */ protected abstract function createConnectorTable(); public function getTableName() { return $this->table->getTableName(); } }