Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3declare(strict_types=1);
4
5namespace Cosray\Field\Capability;
6
7use Cosray\Schema\FulltextWeight;
8
9interface Searchable
10{
11    public function fulltext(FulltextWeight $fulltextWeight): static;
12
13    public function getFulltextWeight(): ?FulltextWeight;
14}