You are here

public function ColorRGBA::resolve in Open Social 10.2.x

Same name and namespace in other branches
  1. 10.3.x modules/social_features/social_branding/src/Plugin/GraphQL/DataProducer/ColorRGBA.php \Drupal\social_branding\Plugin\GraphQL\DataProducer\ColorRGBA::resolve()

Returns the RGBA color.

Parameters

\Drupal\social_branding\Wrappers\Color $color: The branding color.

Return value

\Drupal\social_branding\Wrappers\Color The branding color.

File

modules/social_features/social_branding/src/Plugin/GraphQL/DataProducer/ColorRGBA.php, line 37

Class

ColorRGBA
The RGBA color.

Namespace

Drupal\social_branding\Plugin\GraphQL\DataProducer

Code

public function resolve(Color $color) : Color {
  return $color;
}