Split ResolveResult from Resolve.php Split up Device.php Signed-off-by: Diederik de Groot <ddegroot@talon.nl>
12 lines
161 B
PHP
12 lines
161 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace PROVISION\Device;
|
|
|
|
abstract class Protocol extends \SplEnum {
|
|
const SKINNY = 0;
|
|
const SIP = 1;
|
|
const BOTH = 2;
|
|
}
|
|
?>
|