2022-08-20 02:53:21 +00:00
|
|
|
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace OCA\Memories\Db;
|
|
|
|
|
|
|
|
use OCP\IDBConnection;
|
|
|
|
|
|
|
|
class TimelineQuery {
|
2022-09-11 02:05:04 +00:00
|
|
|
use TimelineQueryDays;
|
|
|
|
use TimelineQueryDay;
|
2022-09-13 07:55:32 +00:00
|
|
|
use TimelineQueryFilters;
|
2022-09-11 02:05:04 +00:00
|
|
|
|
2022-09-09 07:31:42 +00:00
|
|
|
protected IDBConnection $connection;
|
2022-08-20 02:53:21 +00:00
|
|
|
|
2022-09-09 07:31:42 +00:00
|
|
|
public function __construct(IDBConnection $connection) {
|
|
|
|
$this->connection = $connection;
|
|
|
|
}
|
2022-08-20 02:53:21 +00:00
|
|
|
}
|