diff options
Diffstat (limited to 'vendor/thecodingmachine/safe/generated/rpminfo.php')
| -rw-r--r-- | vendor/thecodingmachine/safe/generated/rpminfo.php | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/vendor/thecodingmachine/safe/generated/rpminfo.php b/vendor/thecodingmachine/safe/generated/rpminfo.php deleted file mode 100644 index 44de1ce23..000000000 --- a/vendor/thecodingmachine/safe/generated/rpminfo.php +++ /dev/null @@ -1,21 +0,0 @@ -<?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(); - } -} |