for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace DrMVC\Models;
use DrMVC\Database\Model;
class Test extends Model
{
protected $collection = 'test';
public function test_sql_select()
return $this->select('select * from prefix_test');
}
public function test_insert()
$data = ['name' => 'zzz'];
return $this->insert($data);