titanscssc::assertColor PHP Method

assertColor() public method

public assertColor ( $value )
    public function assertColor($value)
    {
        if ($color = $this->coerceColor($value)) {
            return $color;
        }
        $this->throwError("expecting color");
    }
titanscssc