summaryrefslogtreecommitdiff
path: root/lib/Minz/HookSignature.php
blob: bfc7410d617151fd5f67df65a1954a590fcc79d0 (plain)
1
2
3
4
5
6
7
8
9
<?php
declare(strict_types=1);

enum Minz_HookSignature {
	case NoneToNone;
	case NoneToString;
	case OneToOne;
	case PassArguments;
}