for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Models;
use System\Model;
class UserModel extends Model
{
protected $table = 'users';
public function getTable()
return $this->table;
}
public function isAdmin()
return false;