| Current Path : /home/rtorresani/www/vendor/laminas/laminas-feed/src/PubSubHubbub/Model/ |
| Current File : //home/rtorresani/www/vendor/laminas/laminas-feed/src/PubSubHubbub/Model/AbstractModel.php |
<?php
declare(strict_types=1);
namespace Laminas\Feed\PubSubHubbub\Model;
use Laminas\Db\TableGateway\TableGateway;
use Laminas\Db\TableGateway\TableGatewayInterface;
use function array_pop;
use function explode;
use function strtolower;
class AbstractModel
{
/**
* Laminas\Db\TableGateway\TableGatewayInterface instance to host database methods
*
* @var TableGatewayInterface
*/
protected $db;
public function __construct(?TableGatewayInterface $tableGateway = null)
{
if ($tableGateway === null) {
$parts = explode('\\', static::class);
$table = strtolower(array_pop($parts));
$this->db = new TableGateway($table, null);
} else {
$this->db = $tableGateway;
}
}
}