1
0
Fork 0
mirror of https://github.com/archtechx/money.git synced 2025-12-12 19:34:02 +00:00
money/src/Wireable.php
2021-11-16 19:06:57 +01:00

13 lines
255 B
PHP

<?php
declare(strict_types=1);
// Temporary until Livewire gets the new system for Wireable properties
namespace Livewire {
interface Wireable
{
public function toLivewire();
public static function fromLivewire($value);
}
}