aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Command/InstallCommand.php
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2016-02-24 14:49:50 +0100
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-02-24 14:49:51 +0100
commitf2fcb65b44607d49481700d28706ee3d30561dc1 (patch)
tree34234108d8e08185a41925e6800b26e86882c6bc /src/Wallabag/CoreBundle/Command/InstallCommand.php
parentf83125d2f5cea2c850b7f31ef1ad0a50c6fefdd9 (diff)
downloadwallabag-f2fcb65b44607d49481700d28706ee3d30561dc1.tar.gz
wallabag-f2fcb65b44607d49481700d28706ee3d30561dc1.tar.zst
wallabag-f2fcb65b44607d49481700d28706ee3d30561dc1.zip
Fix wrong variable name
> The variable $requirement does not exist.
Diffstat (limited to 'src/Wallabag/CoreBundle/Command/InstallCommand.php')
-rw-r--r--src/Wallabag/CoreBundle/Command/InstallCommand.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Command/InstallCommand.php b/src/Wallabag/CoreBundle/Command/InstallCommand.php
index 9383628c..771b3c5a 100644
--- a/src/Wallabag/CoreBundle/Command/InstallCommand.php
+++ b/src/Wallabag/CoreBundle/Command/InstallCommand.php
@@ -94,7 +94,7 @@ class InstallCommand extends ContainerAwareCommand
94 } else { 94 } else {
95 $fulfilled = false; 95 $fulfilled = false;
96 $status = '<error>ERROR!</error>'; 96 $status = '<error>ERROR!</error>';
97 $help = 'You need the '.$requirement.' function activated'; 97 $help = 'You need the '.$functionRequired.' function activated';
98 } 98 }
99 99
100 $rows[] = array($label, $status, $help); 100 $rows[] = array($label, $status, $help);