summaryrefslogtreecommitdiff
path: root/vendor/thecodingmachine/safe/generated/rpminfo.php
blob: 44de1ce233defede90526296fa4cc89ab4f238a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php

namespace Safe;

use Safe\Exceptions\RpminfoException;

/**
 * Add an additional retrieved tag in subsequent queries.
 *
 * @param int $tag One of RPMTAG_* constant, see the rpminfo constants page.
 * @throws RpminfoException
 *
 */
function rpmaddtag(int $tag): void
{
    error_clear_last();
    $result = \rpmaddtag($tag);
    if ($result === false) {
        throw RpminfoException::createFromPhpError();
    }
}