src/Contracts/BindsToForm.php

Summary

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

namespace Galahad\Aire\Contracts;

interface BindsToForm
{
    /**
     * Get the data that should be used when binding this object to an Aire form
     */
    public function getAireFormData(): array;
}