Evercode1\ViewMaker\FormatsTokens::setTokens PHP Method

setTokens() private method

private setTokens ( array $tokens )
$tokens array
    private function setTokens(array $tokens)
    {
        foreach ($tokens as $propertyName => $propertyValue) {
            if (property_exists($this, $propertyName)) {
                $this->{$propertyName} = $propertyValue;
            }
        }
    }