<?php namespace App\Repositories\CashFlowIndex\Interfaces; use Illuminate\Support\Collection; interface PaymentDistributionsRepositoryInterface { public function getPaymentDistributions(int $modelId,$filters, $typeEnum): Collection; public function getPaymentDistributionsProject($modelId, $filters, $typeEnum): Collection; public function getNotDistributionsPayment(int $modelId, $filters, bool $credit): Collection; public function getNotDistributionsPaymentProject($modelId, $filters, bool $credit): Collection; }