src/Contracts/HasJsonValue.php

Summary

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

namespace Galahad\Aire\Contracts;

interface HasJsonValue
{
    /**
     * Get the value that should be used if this form element were serialized to JSON
     *
     * @return mixed
     */
    public function getJsonValue();
}