mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Fixes for variable naming
This commit is contained in:
parent
810a38f25d
commit
50c6ab270a
@ -78,11 +78,11 @@ class QuoteTransformer extends EntityTransformer
|
||||
return $this->includeCollection($quote->documents, $transformer, Document::class);
|
||||
}
|
||||
|
||||
public function includeClient(Quote $invoice): Item
|
||||
public function includeClient(Quote $quote): Item
|
||||
{
|
||||
$transformer = new ClientTransformer($this->serializer);
|
||||
|
||||
return $this->includeItem($invoice->client, $transformer, Client::class);
|
||||
return $this->includeItem($quote->client, $transformer, Client::class);
|
||||
}
|
||||
|
||||
public function transform(Quote $quote)
|
||||
|
Loading…
x
Reference in New Issue
Block a user