Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| CospendSearchResultEntry | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | /** |
| 6 | * @copyright Copyright (c) 2020, Julien Veyssier |
| 7 | * |
| 8 | * @author Julien Veyssier <eneiluj@posteo.net> |
| 9 | * |
| 10 | * @license AGPL-3.0 |
| 11 | * |
| 12 | * This code is free software: you can redistribute it and/or modify |
| 13 | * it under the terms of the GNU Affero General Public License, version 3, |
| 14 | * as published by the Free Software Foundation. |
| 15 | * |
| 16 | * This program is distributed in the hope that it will be useful, |
| 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 19 | * GNU Affero General Public License for more details. |
| 20 | * |
| 21 | * You should have received a copy of the GNU Affero General Public License, version 3, |
| 22 | * along with this program. If not, see <http://www.gnu.org/licenses/> |
| 23 | * |
| 24 | */ |
| 25 | namespace OCA\Cospend\Search; |
| 26 | |
| 27 | use OCP\Search\SearchResultEntry; |
| 28 | |
| 29 | class CospendSearchResultEntry extends SearchResultEntry { |
| 30 | } |