for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Canvas\Models;
class UserConfig extends \Baka\Auth\Models\UserConfig
{
/**
*
* @var integer
*/
public $users_id;
* @var string
public $name;
public $value;
public $created_at;
public $updated_at;
* Initialize method for model.
public function initialize()
parent::initialize();
$this->setSource('user_config');
}
* Returns table name mapped in the model.
* @return string
public function getSource(): string
return 'user_config';