| Current Path : /home/rtorresani/www/vendor/magento/framework/DataObject/ |
| Current File : //home/rtorresani/www/vendor/magento/framework/DataObject/IdentityValidatorInterface.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Framework\DataObject;
/**
* Interface IdentityValidatorInterface
*
* @api
*/
interface IdentityValidatorInterface
{
/**
* Checks if uuid is valid
*
* @param string $value
*
* @return bool
*/
public function isValid(string $value): bool;
}