2014-11-03 82 views
0

我試圖下載該模塊:https://github.com/dphn/ScContent 使用作曲家它成功地下載後,我得到這個錯誤:ZF2 MVCtranslator而不是翻譯

Catchable fatal error: Argument 1 passed to ScContent\Service\Localization::__construct() must be an instance of Zend\I18n\Translator\Translator, instance of Zend\Mvc\I18n\Translator given, called in E:\xampp\htdocs\totaltech\vendor\dphn\sc-content\src\ScContent\Factory\Service\LocalizationFactory.php on line 35 and defined in E:\xampp\htdocs\totaltech\vendor\dphn\sc-content\src\ScContent\Service\Localization.php on line 55

我該怎麼辦?

我使用zf2.3和骨骼應用

回答

1

工廠在骨骼用來獲取譯者是TranslatorFactory至極回報Zend\Mvc\I18n\Translator一個實例。

ScContent\Service\Localization應該使用Zend\I18n\Translator\TranslatorInterface以便能夠同時使用Zend\I18n\Translator\TranslatorZend\Mvc\I18n\Translator

如果我記得不錯,MvcTranslator由ZF 2.2引入。