Luciano Andrade před 7 roky
rodič
revize
b7a53b0739
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2 2
      Command/OAuthClientCreateCommand.php

+ 2 - 2
Command/OAuthClientCreateCommand.php

@@ -52,8 +52,8 @@ class OAuthClientCreateCommand extends ContainerAwareCommand
         $client = $this->createClient($redirectUri, $random, $secret);
         
         $output->writeln('#OAuth client successfully generated!');
-        $output->writeln('client_id='.$client->getPublicId());
-        $output->writeln('client_secret='.$client->getSecret());
+        $output->writeln('OAUTH_CLIENT_ID='.$client->getPublicId());
+        $output->writeln('OAUTH_CLIENT_SECRET='.$client->getSecret());
     }
     
     /**