* @since 1.0.0 */ protected static array $columns = [ 'auditor_audit_id' => ['name' => 'auditor_audit_id', 'type' => 'int', 'internal' => 'id'], 'auditor_audit_created_by' => ['name' => 'auditor_audit_created_by', 'type' => 'int', 'internal' => 'createdBy', 'readonly' => true], 'auditor_audit_created_at' => ['name' => 'auditor_audit_created_at', 'type' => 'DateTimeImmutable', 'internal' => 'createdAt', 'readonly' => true], 'auditor_audit_ip' => ['name' => 'auditor_audit_ip', 'type' => 'int', 'internal' => 'ip', 'annotations' => ['gdpr' => true]], 'auditor_audit_module' => ['name' => 'auditor_audit_module', 'type' => 'string', 'internal' => 'module'], 'auditor_audit_ref' => ['name' => 'auditor_audit_ref', 'type' => 'string', 'internal' => 'ref'], 'auditor_audit_type' => ['name' => 'auditor_audit_type', 'type' => 'int', 'internal' => 'type'], 'auditor_audit_trigger' => ['name' => 'auditor_audit_trigger', 'type' => 'string', 'internal' => 'trigger'], 'auditor_audit_content' => ['name' => 'auditor_audit_content', 'type' => 'string', 'internal' => 'content'], 'auditor_audit_old' => ['name' => 'auditor_audit_old', 'type' => 'string', 'internal' => 'old'], 'auditor_audit_new' => ['name' => 'auditor_audit_new', 'type' => 'string', 'internal' => 'new'], ]; /** * Belongs to. * * @var array * @since 1.0.0 */ protected static array $belongsTo = [ 'createdBy' => [ 'mapper' => AccountMapper::class, 'external' => 'auditor_audit_created_by', ], ]; /** * Model to use by the mapper. * * @var string * @since 1.0.0 */ protected static string $model = Audit::class; /** * Primary table. * * @var string * @since 1.0.0 */ protected static string $table = 'auditor_audit'; /** * Primary field name. * * @var string * @since 1.0.0 */ protected static string $primaryField = 'auditor_audit_id'; /** * Created at. * * @var string * @since 1.0.0 */ protected static string $createdAt = 'auditor_audit_created_at'; /** * {@inheritdoc} */ public static function delete($obj, int $relations = RelationType::REFERENCE) : mixed { return -1; } /** * {@inheritdoc} */ public static function update($obj, int $relations = RelationType::ALL, int $depth = 3) : mixed { return -1; } /** * {@inheritdoc} */ public static function updateArray(array &$obj, int $relations = RelationType::ALL, int $depth = 1) : mixed { return -1; } }