Inheritance: extends eZ\Publish\Core\FieldType\RichText\RichTextStorage\Gateway
 /**
  * Returns a ready to test LegacyStorage gateway
  *
  * @return \eZ\Publish\Core\FieldType\RichText\RichTextStorage\Gateway\LegacyStorage
  */
 protected function getStorageGateway()
 {
     if (!isset($this->storageGateway)) {
         $this->storageGateway = new LegacyStorage(new UrlStorage());
         $this->storageGateway->setConnection($this->getDatabaseHandler());
     }
     return $this->storageGateway;
 }