memories/lib/Db/TimelineQuery.php

18 lines
343 B
PHP
Raw Normal View History

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-12 01:33:38 +00:00
use TimelineQueryFavorites;
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
}