Procházet zdrojové kódy

Se modifico la salida del comando para poder ser utilizado en el seteo de variables de entorno

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

+ 3 - 3
Command/OAuthClientCreateCommand.php

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