l = $l10nFactory->get('lib'); } /** * @inheritDoc * @since 30.0.0 */ public function getName(): string { return $this->l->t('Emoji generator'); } /** * @inheritDoc * @since 30.0.0 */ public function getDescription(): string { return $this->l->t('Takes text and generates a representative emoji for it.'); } /** * @return string * @since 30.0.0 */ public function getId(): string { return self::ID; } /** * @return ShapeDescriptor[] * @since 30.0.0 */ public function getInputShape(): array { return [ 'input' => new ShapeDescriptor( $this->l->t('Input text'), $this->l->t('The text to generate an emoji for'), EShapeType::Text ), ]; } /** * @return ShapeDescriptor[] * @since 30.0.0 */ public function getOutputShape(): array { return [ 'output' => new ShapeDescriptor( $this->l->t('Generated emoji'), $this->l->t('The generated emoji based on the input text'), EShapeType::Text ), ]; } }