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