Skip to content

Commit f13e171

Browse files
committed
Fix(RSACommand): Fixed request import
1 parent 0f1dbda commit f13e171

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/Console/RSACommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@
88
use Symfony\Component\Console\Helper\ProgressBar;
99
use LionSecurity\RSA;
1010
use LionFiles\FILES;
11-
use App\Http\Request\Request;
11+
use LionRequest\Request;
1212

1313
class RSACommand extends Command {
1414

1515
protected static $defaultName = "new:rsa";
1616
private object $env;
1717

1818
protected function initialize(InputInterface $input, OutputInterface $output) {
19-
echo("Initializing RSA service... \r\n\n");
19+
echo("Initializing RSA service...\r\n");
2020
$this->env = Request::getInstance()->env();
2121
RSA::$url_path = $this->env->RSA_URL_PATH === '' ? RSA::$url_path : $this->env->RSA_URL_PATH;
2222
}

0 commit comments

Comments
 (0)