API Adding chaining to i18nTextCollector::write()

Allowing chaining off of the i18nTextCollector::write() function so it's
inline with DataObject::write()
This commit is contained in:
Daniel Hensby 2014-01-17 12:17:48 +00:00
parent 39ed36dad6
commit 973b967e6b

View File

@ -193,6 +193,7 @@ class i18nTextCollector extends Object {
public function write($module, $entities) {
$this->getWriter()->write($entities, $this->defaultLocale, $this->baseSavePath . '/' . $module);
return $this;
}
/**