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/config
diff options
context:
space:
mode:
authorbarbushin <barbushin@gmail.com>2015-07-03 12:51:28 +0300
committerbarbushin <barbushin@gmail.com>2015-07-03 12:51:28 +0300
commit7976071b89694cfe7f544cdb538e786bbce72901 (patch)
tree0d198045a53a95693a835feb44f4cf90c282eec9 /config
parent7ca7d5f0fa0f97f522c79716232f21ce5edb7147 (diff)
Move Zend_Validate_EmailAddress to DI
Diffstat (limited to 'config')
-rw-r--r--config/global.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/config/global.php b/config/global.php
index d89549efda..6c35c624f0 100644
--- a/config/global.php
+++ b/config/global.php
@@ -64,5 +64,7 @@ return array(
'observers.global' => array(),
- 'Piwik\EventDispatcher' => DI\object()->constructorParameter('observers', DI\get('observers.global'))
+ 'Piwik\EventDispatcher' => DI\object()->constructorParameter('observers', DI\get('observers.global')),
+
+ 'Zend_Validate_EmailAddress' => DI\object('Zend_Validate_EmailAddress'),
);