/**
  * Renders the replace.
  *
  * @param string $id     The identifier.
  * @param array  $config The config.
  *
  * @return string The rendered replace.
  */
 public function renderReplace($id, array $config)
 {
     @trigger_error('The ckeditor_replace twig function is now deprecated and will be removed in 3.0. Use ckeditor_widget instead.', E_USER_DEPRECATED);
     return $this->helper->renderWidget($id, $config);
 }
 /**
  * {@inheritdoc}
  */
 public function getName()
 {
     return $this->helper->getName();
 }
 public function testName()
 {
     $this->assertSame('ivory_ckeditor', $this->helper->getName());
 }