test creation of freight order

This commit is contained in:
Yisroel Baum 2025-11-03 10:01:38 +02:00
parent 3df72d31df
commit 3e970173a3
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
2 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,13 @@
<?php
namespace Tests\Fakes\FreightOrder;
use FreightQuote\FreightOrder\FreightOrder;
class FakeFreightOrderRepository
{
public function find(): ?FreightOrder
{
return new FreightOrder();
}
}