['name' => 'profile_contact_id', 'type' => 'int', 'internal' => 'id'], ]; /** * Primary table. * * @var string * @since 1.0.0 */ protected static $table = 'profile_contact'; /** * Primary field name. * * @var string * @since 1.0.0 */ protected static $primaryField = 'profile_contact_id'; /** * Create object. * * @param mixed $obj Object * @param int $relations Behavior for relations creation * * @return mixed * * @since 1.0.0 */ public static function create($obj, int $relations = RelationType::ALL) { try { $objId = parent::create($obj, $relations); if($objId === null || !is_scalar($objId)) { return $objId; } } catch (\Exception $e) { var_dump($e->getMessage()); return false; } return $objId; } /** * Get object. * * @param mixed $primaryKey Key * @param int $relations Load relations * @param mixed $fill Object to fill * * @return Account * * @since 1.0.0 */ public static function get($primaryKey, int $relations = RelationType::ALL, $fill = null) { return parent::get($primaryKey, $relations, $fill); } }