PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
saloonphp
/
saloon
/
src
/
Contracts
/
Body
/
Editing: MergeableBody.php
<?php declare(strict_types=1); namespace Saloon\Contracts\Body; interface MergeableBody { /** * Merge another array into the repository * * @param array<mixed, mixed> ...$arrays * @return $this */ public function merge(array ...$arrays): static; }
SAVE
CANCEL