aboutsummaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
authorRasmus Fuhse <fuhse@data-quest.de>2024-05-07 18:31:11 +0000
committerRasmus Fuhse <fuhse@data-quest.de>2024-05-07 18:31:11 +0000
commit2c4c41a7733923cbd0f9f93eb7c90ad412efda1f (patch)
tree985e3e59ed6d6fa35cf4cc79e736b1bd8e3e8670 /cli
parent59c6b7f62e2d3d27cd1a4027cd18be5b9a21f64e (diff)
Resolve "edu-sharing/auth-plugin umstellen auf composer"
Closes #4120 Merge request studip/studip!2964
Diffstat (limited to 'cli')
-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);