We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df66457 commit 0aa4608Copy full SHA for 0aa4608
app/code/Magento/AdminAdobeIms/Api/SaveImsUserInterface.php
@@ -0,0 +1,26 @@
1
+<?php
2
+/**
3
+ * Copyright © Magento, Inc. All rights reserved.
4
+ * See COPYING.txt for license details.
5
+ */
6
+declare(strict_types=1);
7
+
8
+namespace Magento\AdminAdobeIms\Api;
9
10
+use Magento\Framework\Exception\CouldNotSaveException;
11
12
13
+ * Interface SaveImsUserInterface
14
+ * Save Ims User & Role
15
16
+interface SaveImsUserInterface
17
+{
18
+ /**
19
+ * Add Admin Adobe IMS User with Default Role i.e "Adobe Ims" & No Permissions
20
+ *
21
+ * @param array $profile
22
+ * @return void
23
+ * @throws CouldNotSaveException
24
25
+ public function save(array $profile): void;
26
+}
0 commit comments