PEL: createPELWithFFDCFiles stub

This is a new D-Bus method to create a PEL and openbmc event log and
also return the ID of the created log and PEL.

As this is coreqed with the phosphor-dbus-interfaces change that added
this method, just a stub is going in now so it can go in as quick as
possible to not hold up the PDI commit.

Signed-off-by: Matt Spinler <spinler@us.ibm.com>
Change-Id: I88895a7f29241a5fbbc62b1fe6a0745d8dd9f052
diff --git a/extensions/openpower-pels/manager.cpp b/extensions/openpower-pels/manager.cpp
index 841a514..fa6bc59 100644
--- a/extensions/openpower-pels/manager.cpp
+++ b/extensions/openpower-pels/manager.cpp
@@ -568,5 +568,17 @@
         offset += offsetof(inotify_event, name) + event->len;
     }
 }
+
+std::tuple<uint32_t, uint32_t> Manager::createPELWithFFDCFiles(
+    std::string message, Entry::Level severity,
+    std::map<std::string, std::string> additionalData,
+    std::vector<std::tuple<
+        sdbusplus::xyz::openbmc_project::Logging::server::Create::FFDCFormat,
+        uint8_t, uint8_t, sdbusplus::message::unix_fd>>
+        fFDC)
+{
+    return {0, 0};
+}
+
 } // namespace pels
 } // namespace openpower