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 30b94c4 commit 0f1dbdaCopy full SHA for 0f1dbda
app/Console/RSACommand.php
@@ -18,10 +18,11 @@ class RSACommand extends Command {
18
protected function initialize(InputInterface $input, OutputInterface $output) {
19
echo("Initializing RSA service... \r\n\n");
20
$this->env = Request::getInstance()->env();
21
+ RSA::$url_path = $this->env->RSA_URL_PATH === '' ? RSA::$url_path : $this->env->RSA_URL_PATH;
22
}
23
24
protected function interact(InputInterface $input, OutputInterface $output) {
- RSA::$url_path = $this->env->RSA_URL_PATH === '' ? RSA::$url_path : $this->env->RSA_URL_PATH;
25
+
26
27
28
protected function configure() {
0 commit comments