| Current Path : /home/rtorresani/www/vendor/laminas/laminas-db/src/RowGateway/Feature/ |
| Current File : //home/rtorresani/www/vendor/laminas/laminas-db/src/RowGateway/Feature/AbstractFeature.php |
<?php
namespace Laminas\Db\RowGateway\Feature;
use Laminas\Db\RowGateway\AbstractRowGateway;
use Laminas\Db\RowGateway\Exception;
use Laminas\Db\RowGateway\Exception\RuntimeException;
abstract class AbstractFeature extends AbstractRowGateway
{
/** @var AbstractRowGateway */
protected $rowGateway;
/** @var array */
protected $sharedData = [];
/**
* @return string
*/
public function getName()
{
return static::class;
}
public function setRowGateway(AbstractRowGateway $rowGateway)
{
$this->rowGateway = $rowGateway;
}
/**
* @throws RuntimeException
*/
public function initialize()
{
throw new Exception\RuntimeException('This method is not intended to be called on this object.');
}
/**
* @return array
*/
public function getMagicMethodSpecifications()
{
return [];
}
}