netglue/prismic-php-kit

View on GitHub
src/Prismic/Document/Fragment/Number.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php
declare(strict_types=1);

namespace Prismic\Document\Fragment;

/**
 * Numbers are always returned as floats from the API, so assuming we have a numeric value, it should always be a float
 */

class Number extends AbstractScalarFragment
{

}