2022-06-17 14:29:54 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
/**
|
2024-09-08 13:46:22 +00:00
|
|
|
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2022-06-17 14:29:54 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\Social\Tools;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Interface IQueryRow
|
|
|
|
*
|
|
|
|
* @deprecated
|
|
|
|
* @package OCA\Social\Tools
|
|
|
|
*/
|
|
|
|
interface IQueryRow {
|
|
|
|
/**
|
|
|
|
* import data to feed the model.
|
|
|
|
*
|
|
|
|
* @param array $data
|
|
|
|
*/
|
|
|
|
public function importFromDatabase(array $data);
|
|
|
|
}
|