Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordiosmosis <diosmosis@users.noreply.github.com>2020-02-10 05:33:55 +0300
committerGitHub <noreply@github.com>2020-02-10 05:33:55 +0300
commit48e9eeed85f2c8d40af517ca983d886245ab2fa7 (patch)
tree06ab9033e297233049106a1ad09065cd1f8fa1fc
parent300343a0d92b8a9e9b23727fa4dee2721df824e9 (diff)
Add missing return statement. (#15539)
-rw-r--r--core/Console.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Console.php b/core/Console.php
index d1950407ee..6f112e7f8f 100644
--- a/core/Console.php
+++ b/core/Console.php
@@ -90,7 +90,7 @@ class Console extends Application
public function doRun(InputInterface $input, OutputInterface $output)
{
try {
- $this->doRunImpl($input, $output);
+ return $this->doRunImpl($input, $output);
} catch (\Exception $ex) {
try {
FrontController::generateSafeModeOutputFromException($ex);