public function ColorBlue::resolve in Open Social 10.3.x
Same name and namespace in other branches
- 10.2.x modules/social_features/social_branding/src/Plugin/GraphQL/DataProducer/ColorBlue.php \Drupal\social_branding\Plugin\GraphQL\DataProducer\ColorBlue::resolve()
Returns the color blue component.
Parameters
\Drupal\social_branding\Wrappers\Color $color: The color.
Return value
int The color blue component.
File
- modules/
social_features/ social_branding/ src/ Plugin/ GraphQL/ DataProducer/ ColorBlue.php, line 37
Class
- ColorBlue
- The blue component from color.
Namespace
Drupal\social_branding\Plugin\GraphQL\DataProducerCode
public function resolve(Color $color) : int {
return $color
->blue();
}