Skip to content

Commit

Permalink
Merge pull request #95 from Jibbarth/patch-1
Browse files Browse the repository at this point in the history
Fix DocumentableInterface for use ResultInteface
  • Loading branch information
maximehuran authored Oct 8, 2021
2 parents 6ae8cfb + 000a0e1 commit 03d5f03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Model/Documentable/DocumentableInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@

namespace MonsieurBiz\SyliusSearchPlugin\Model\Documentable;

use MonsieurBiz\SyliusSearchPlugin\Model\Document\Result;
use MonsieurBiz\SyliusSearchPlugin\Model\Document\ResultInterface;

interface DocumentableInterface
{
public function getDocumentType(): string;

public function convertToDocument(string $locale): Result;
public function convertToDocument(string $locale): ResultInterface;
}

0 comments on commit 03d5f03

Please sign in to comment.