This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
declare(strict_types=1); | |
enum Q931DisconnectCause: int | |
{ | |
case UNALLOCATED_NUMBER = 1; | |
case NO_ROUTE_TO_TRANSIT_NETWORK = 2; | |
case NO_ROUTE_TO_DESTINATION = 3; | |
case SEND_SPECIAL_INFO_TONE = 4; |