for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace App\Model\Repository\Metro;
use Nymfonya\Component\Container;
use App\Component\Model\Orm\IOrm;
use App\Component\Model\Orm\Orm;
class Stations extends Orm implements IOrm
{
const _LON = 'lon';
const _LAT = 'lat';
const _NAME = 'name';
const _H = 'h';
/**
* table name
* @var string
*/
protected $tablename = 'metro_stations';
* table primary key
protected $primary = 'id';
* database name
protected $database = 'nymfonya';
* pool name
protected $slot = 'test';
* instanciate
*
* @param Container $container
* @return self
public function __construct(Container $container)
parent::__construct($container);
}