* @license http://opensource.org/licenses/MIT MIT */ declare(strict_types=1); namespace Ramsey\Uuid\StaticAnalysis; use Ramsey\Uuid\UuidInterface; /** * This is a static analysis fixture to verify that the API signature * of a UUID does not return empty strings for methods that never will do so. */ final class UuidIsNeverEmpty { /** @psalm-return non-empty-string */ public function bytesAreNeverEmpty(UuidInterface $uuid): string { return $uuid->getBytes(); } /** @psalm-return non-empty-string */ public function stringIsNeverEmpty(UuidInterface $uuid): string { return $uuid->toString(); } }