validator = new Validator; $this->on = (boolean)$on; } /** * {@inheritdoc} */ public function checkEncoding($str, $encoding) { if (!(boolean)$this->on) { return true; } return $this->validator->checkEncoding($str, $encoding); } }