1
0
mirror of https://github.com/beestat/app.git synced 2025-05-24 02:14:03 -04:00
beestat/api/external_api_log.php
2021-02-26 14:51:59 -05:00

23 lines
495 B
PHP

<?php
/**
* Log for these external API calls.
*
* @author Jon Ziebell
*/
class external_api_log extends cora\crud {
/**
* Queue a create to happen at the end of the request.
*
* @param array $attributes The attributes to insert.
*
* @return int The ID of the inserted row.
*/
public function create($attributes) {
$attributes['user_id'] = $this->session->get_user_id();
$this->request->queue_create($this->resource, $attributes);
}
}