Flitch\Rule\File\Encoding::setAllowBom PHP Method

setAllowBom() public method

Set whether to allow byte order marks.
public setAllowBom ( boolean $allowBom ) : Encoding
$allowBom boolean
return Encoding
    public function setAllowBom($allowBom)
    {
        $this->allowBom = (bool) $allowBom;
        return $this;
    }