<?php
namespace fox;
/**
*
* Class fox\stringImportable
* @copyright MX STAR LLC 2018-2022
* @version 4.0.0
* @author Pavel Dmitriev
* @license GPLv3
**/
interface stringImportable
{
public function __fromString($val);
}
?>