mirror of
https://github.com/archtechx/money.git
synced 2025-12-12 19:34:02 +00:00
13 lines
255 B
PHP
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);
|
|
}
|
|
}
|