aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Structure/Types/Mut.php
blob: 8b3c61152174b2a84cb48d8db462bea2e3e77f66 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php

declare(strict_types=1);

namespace Nsfisis\Waddiwasi\Structure\Types;

enum Mut
{
    case Const;
    case Var;
}