From 19d8f8b354440a4af5aaba2ac4dab35730e483f3 Mon Sep 17 00:00:00 2001 From: Ben Roberts Date: Tue, 4 Aug 2015 14:34:58 +0200 Subject: [PATCH] Fixed typo --- Command/DoctrineEncryptDatabaseCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Command/DoctrineEncryptDatabaseCommand.php b/Command/DoctrineEncryptDatabaseCommand.php index d9492c65..2b487c08 100644 --- a/Command/DoctrineEncryptDatabaseCommand.php +++ b/Command/DoctrineEncryptDatabaseCommand.php @@ -119,6 +119,6 @@ protected function execute(InputInterface $input, OutputInterface $output) } //Say it is finished - $output->writeln("\nEncryption finished values encrypted: " . $subscriber->encryptCounter . " values.\nAll values are now decrypted."); + $output->writeln("\nEncryption finished values encrypted: " . $subscriber->encryptCounter . " values.\nAll values are now encrypted."); } }