for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Model\Repository\Metro;
use Nymfonya\Component\Container;
use App\Component\Model\Orm\IOrm;
use App\Component\Model\Orm\Orm;
class Lines extends Orm implements IOrm
{
/**
* table name
* @var string
*/
protected $tablename = 'metro_lines';
* 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);
}