EscolaLMS/payments

View on GitHub
src/Contracts/Billable.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace EscolaLms\Payments\Contracts;

use Illuminate\Database\Eloquent\Relations\HasMany;

/**
 * @property-read \Illuminate\Support\Collection $payments
 */
interface Billable
{
    public function payments(): HasMany;
}