l = $l10nFactory->get('lib'); } /** * @inheritDoc * @since 31.0.0 */ public function getName(): string { return $this->l->t('Proofread'); } /** * @inheritDoc * @since 31.0.0 */ public function getDescription(): string { return $this->l->t('Proofreads a text and lists corrections'); } /** * @return string * @since 31.0.0 */ public function getId(): string { return self::ID; } /** * @return ShapeDescriptor[] * @since 31.0.0 */ public function getInputShape(): array { return [ 'input' => new ShapeDescriptor( $this->l->t('Text'), $this->l->t('The text to proofread'), EShapeType::Text ), ]; } /** * @return ShapeDescriptor[] * @since 31.0.0 */ public function getOutputShape(): array { return [ 'output' => new ShapeDescriptor( $this->l->t('Corrections'), $this->l->t('The corrections that should be made in your text'), EShapeType::Text ), ]; } }