PropertyModifierStripDomain: syntax

This commit is contained in:
Thomas Gelf 2016-03-05 17:03:08 +01:00
parent 0999a8401c
commit 0c579561ff
1 changed files with 1 additions and 1 deletions

View File

@ -18,6 +18,6 @@ class PropertyModifierStripDomain extends PropertyModifierHook
public function transform($value)
{
return preg_replace($this->settings['domain'], "", $value);
return preg_replace($this->settings['domain'], '', $value);
}
}