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
path: root/libs
diff options
context:
space:
mode:
authorJean Baptiste Noblot <noblot.jb@gmail.com>2020-04-01 08:52:57 +0300
committerGitHub <noreply@github.com>2020-04-01 08:52:57 +0300
commit53cc7a4299535b481d90c45ea5fb7137a6ef9092 (patch)
tree561df0dde056cba746d02d6989fcc9a9945128dd /libs
parenta60fb83805bf29e4a728d6a61f96f6cc30a79228 (diff)
Useless return (#15761)
* remove useless return * remove useless return
Diffstat (limited to 'libs')
-rw-r--r--libs/Zend/Db/Adapter/Pdo/Sqlite.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/Zend/Db/Adapter/Pdo/Sqlite.php b/libs/Zend/Db/Adapter/Pdo/Sqlite.php
index 69140a3579..4458184818 100644
--- a/libs/Zend/Db/Adapter/Pdo/Sqlite.php
+++ b/libs/Zend/Db/Adapter/Pdo/Sqlite.php
@@ -91,7 +91,7 @@ class Zend_Db_Adapter_Pdo_Sqlite extends Zend_Db_Adapter_Pdo_Abstract
$this->_config['username'] = null;
$this->_config['password'] = null;
- return parent::__construct($config);
+ parent::__construct($config);
}
/**