| Total Complexity | 8 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class Operations |
||
| 11 | { |
||
| 12 | public static function toMutable(IndexingInterface $indexing): Indexing |
||
| 18 | } |
||
| 19 | |||
| 20 | public static function from(IndexingInterface $source): Indexing |
||
| 21 | { |
||
| 22 | return static::merge($source); |
||
| 23 | } |
||
| 24 | |||
| 25 | public static function merge(IndexingInterface ...$indexings): Indexing |
||
| 44 | } |
||
| 45 | } |
||
| 46 |