Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
Responsive
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3declare(strict_types=1);
4
5namespace Cosray\Schema;
6
7/**
8 * How a blocks grid behaves below the reference stylesheet's container
9 * threshold: `Stack` collapses every block to full width, `Preserve`
10 * keeps the grid, `Custom` marks the container for site-owned rules.
11 */
12enum Responsive: string
13{
14    case Stack = 'stack';
15    case Preserve = 'preserve';
16    case Custom = 'custom';
17}