summaryrefslogtreecommitdiff
path: root/vendor/thecodingmachine/safe/generated/rrd.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/thecodingmachine/safe/generated/rrd.php')
-rw-r--r--vendor/thecodingmachine/safe/generated/rrd.php23
1 files changed, 23 insertions, 0 deletions
diff --git a/vendor/thecodingmachine/safe/generated/rrd.php b/vendor/thecodingmachine/safe/generated/rrd.php
new file mode 100644
index 000000000..9bb3b5c52
--- /dev/null
+++ b/vendor/thecodingmachine/safe/generated/rrd.php
@@ -0,0 +1,23 @@
+<?php
+
+namespace Safe;
+
+use Safe\Exceptions\RrdException;
+
+/**
+ * Creates the rdd database file.
+ *
+ * @param string $filename Filename for newly created rrd file.
+ * @param array $options Options for rrd create - list of strings. See man page of rrd create
+ * for whole list of options.
+ * @throws RrdException
+ *
+ */
+function rrd_create(string $filename, array $options): void
+{
+ error_clear_last();
+ $result = \rrd_create($filename, $options);
+ if ($result === false) {
+ throw RrdException::createFromPhpError();
+ }
+}