3v4l.org

run code in 300+ PHP versions simultaneously
<?php /** * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ namespace epay; /*** * Enumeration for logging levels of importancy. * * @author Talaeezadeh */ class LogLevel extends \SplEnum { const __default = self::NONE; /** * Disable logging * * @var Constatnt(Int) No loggong */ const NONE = 0; /** * Fatal Errors * * @var Constant(Int) Fatal Errors */ const FATAL = 1; /** * Errors that are not fatal * * @var Constant(Int) Normal Errors */ const ERROR = 2; /** * Warnings * * @var Constant(Int) Warnings */ const WARNING = 3; /** * Notifications * * @var Constant(Int) Notifications */ const NOTICE = 4; /** * Informations * * @var Constant(Int) Informations */ const INFO = 5; /** * Everything that are not categorized in previous levels * * @var Constant(Int) Every (other) thing */ const EVERYTHING = 6; }
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/CjvbM
function name:  (null)
number of ops:  2
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   16     0  E >   DECLARE_CLASS                                            'epay%5Cloglevel', 'splenum'
   67     1      > RETURN                                                   1

Class epay\LogLevel: [no user functions]

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
191.82 ms | 1392 KiB | 13 Q