spatie / color

A little library to deal with color conversions
https://spatie.be/opensource/php
MIT License
350 stars 36 forks source link

Add a `Spatie\Color\Color` interface #11

Closed nesk closed 7 years ago

nesk commented 7 years ago

This interface allows to type hint a color without knowing its type:

function getRedChannel(Spatie\Color\Color $color)
{
    return $color->red();
}