aboutsummaryrefslogtreecommitdiff
path: root/cli/Commands/Twillo/PrivateKeys.php
diff options
context:
space:
mode:
authorPhilipp Schüttlöffel <schuettloeffel@zqs.uni-hannover.de>2024-09-24 10:53:31 +0200
committerPhilipp Schüttlöffel <schuettloeffel@zqs.uni-hannover.de>2024-09-24 10:53:31 +0200
commit4459dd7917f4d1c34f40bb68f0e991e9c3d53e4c (patch)
tree5c07151ae61276d334e88f6309c30d439a85c12e /cli/Commands/Twillo/PrivateKeys.php
parentda0022e5c1abbf9825ae76debaabdff7e8623bb4 (diff)
parent97a188592c679890a25c37ab78463add76a52ff7 (diff)
Merge branch 'main' into issue-3911issue-3911
Diffstat (limited to 'cli/Commands/Twillo/PrivateKeys.php')
-rw-r--r--cli/Commands/Twillo/PrivateKeys.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/Commands/Twillo/PrivateKeys.php b/cli/Commands/Twillo/PrivateKeys.php
index 06dd121..c517e5b 100644
--- a/cli/Commands/Twillo/PrivateKeys.php
+++ b/cli/Commands/Twillo/PrivateKeys.php
@@ -2,7 +2,7 @@
namespace Studip\Cli\Commands\Twillo;
use Config;
-use EduSharingHelper;
+use \EduSharingApiClient\EduSharingHelper;
use Studip\Cli\Commands\AbstractCommand;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
@@ -32,13 +32,13 @@ final class PrivateKeys extends AbstractCommand
$key = EduSharingHelper::generateKeyPair();
$success = file_put_contents(
$properties,
- EduSharingHelper::generateEduAppXMLData($appId, $key['publickey'])
+ EduSharingHelper::generateEduAppXMLData($appId, $key['publicKey'])
);
if ($success !== false) {
file_put_contents(
$privateKey,
- $key['privatekey']
+ $key['privateKey']
);
Config::get()->store('OERCAMPUS_TWILLO_APPID', $appId);