Skip to content

Commit

Permalink
Renamed BinaryBaseSearchField to AbstractBinarySearchField
Browse files Browse the repository at this point in the history
Co-Authored-By: Adam Wójs <[email protected]>
  • Loading branch information
alongosz and adamwojs committed Aug 26, 2024
1 parent 519b7fd commit c489016
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* @internal
*/
abstract class BinaryBaseSearchField implements Indexable
abstract class AbstractBinarySearchField implements Indexable
{
/**
* @return \Ibexa\Contracts\Core\Search\Field[]
Expand Down
4 changes: 2 additions & 2 deletions src/lib/FieldType/BinaryFile/SearchField.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@

namespace Ibexa\Core\FieldType\BinaryFile;

use Ibexa\Core\FieldType\BinaryBase\BinaryBaseSearchField;
use Ibexa\Core\FieldType\BinaryBase\AbstractBinarySearchField;

/**
* Indexable definition for BinaryFile field type.
*/
class SearchField extends BinaryBaseSearchField
class SearchField extends AbstractBinarySearchField
{
}
4 changes: 2 additions & 2 deletions src/lib/FieldType/Media/SearchField.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@

namespace Ibexa\Core\FieldType\Media;

use Ibexa\Core\FieldType\BinaryBase\BinaryBaseSearchField;
use Ibexa\Core\FieldType\BinaryBase\AbstractBinarySearchField;

/**
* Indexable definition for Media field type.
*/
class SearchField extends BinaryBaseSearchField
class SearchField extends AbstractBinarySearchField
{
}

0 comments on commit c489016

Please sign in to comment.