Skip to content

Instantly share code, notes, and snippets.

@cpierce
Created June 4, 2016 00:12
Show Gist options
  • Save cpierce/faee9368a0c1eaa61c733949e79658c1 to your computer and use it in GitHub Desktop.
Save cpierce/faee9368a0c1eaa61c733949e79658c1 to your computer and use it in GitHub Desktop.
/**
* Get Color Accessor Method
*
* @param string $color
*
* @return string
*/
protected function getColor($color)
{
return '#' . $color;
}
/**
* Set Color Mutator Method
*
* @param string $color
*
* @return boolean|string
*/
protected function setColor($color)
{
if (!isset($color)) {
return false;
}
return str_replace('#' ,'', $color);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment