3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Singleton{ private static $instance; private function __construct(){} public static function instance() { if (is_null(self::$instance)){ self::$instance = new static; } return self::$instance; } } $obj1 = Singleton::instance(); $obj2 = Singleton::instance(); var_dump(spl_object_hash($obj1), spl_object_hash($obj2)); $closure = function(){ return clone self::$instance; }; $cloner = $closure->bindTo($obj1); $obj3 = $cloner(); var_dump(spl_object_hash($obj3));
Output for 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
string(32) "00000000000000010000000000000000" string(32) "00000000000000010000000000000000" Fatal error: Uncaught Error: Access to undeclared static property Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 8.0.30
string(32) "000000003a82770e0000000004190b0e" string(32) "000000003a82770e0000000004190b0e" Fatal error: Uncaught Error: Access to undeclared static property Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 8.0.29
string(32) "00000000422535c4000000007d7b0bac" string(32) "00000000422535c4000000007d7b0bac" Fatal error: Uncaught Error: Access to undeclared static property Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 8.0.28
string(32) "000000007096ca1c000000007e55f983" string(32) "000000007096ca1c000000007e55f983" Fatal error: Uncaught Error: Access to undeclared static property Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 8.0.27
string(32) "000000004fb8c2560000000074770115" string(32) "000000004fb8c2560000000074770115" Fatal error: Uncaught Error: Access to undeclared static property Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 8.0.26
string(32) "000000000f20cb620000000061fa1c4d" string(32) "000000000f20cb620000000061fa1c4d" Fatal error: Uncaught Error: Access to undeclared static property Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 8.0.25
string(32) "0000000030314a5200000000369ec3b4" string(32) "0000000030314a5200000000369ec3b4" Fatal error: Uncaught Error: Access to undeclared static property Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 8.0.24
string(32) "000000000f6583e7000000004e22726d" string(32) "000000000f6583e7000000004e22726d" Fatal error: Uncaught Error: Access to undeclared static property Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 8.0.23
string(32) "00000000710b9498000000002bc069aa" string(32) "00000000710b9498000000002bc069aa" Fatal error: Uncaught Error: Access to undeclared static property Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 8.0.22
string(32) "0000000002bf5eaf000000005e13cdd8" string(32) "0000000002bf5eaf000000005e13cdd8" Fatal error: Uncaught Error: Access to undeclared static property Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 8.0.21
string(32) "000000002cd34f280000000034d69dec" string(32) "000000002cd34f280000000034d69dec" Fatal error: Uncaught Error: Access to undeclared static property Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 8.0.20
string(32) "0000000003e7dd8a0000000031e4f904" string(32) "0000000003e7dd8a0000000031e4f904" Fatal error: Uncaught Error: Access to undeclared static property Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 8.0.19
string(32) "000000004da9dec40000000068fa830b" string(32) "000000004da9dec40000000068fa830b" Fatal error: Uncaught Error: Access to undeclared static property Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 8.0.18
string(32) "000000002c741495000000003fb75e2e" string(32) "000000002c741495000000003fb75e2e" Fatal error: Uncaught Error: Access to undeclared static property Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 8.0.17
string(32) "000000000ce57686000000001b794b41" string(32) "000000000ce57686000000001b794b41" Fatal error: Uncaught Error: Access to undeclared static property Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 8.0.16
string(32) "00000000395d56ba00000000498421a1" string(32) "00000000395d56ba00000000498421a1" Fatal error: Uncaught Error: Access to undeclared static property Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 8.0.15
string(32) "0000000022d41aa40000000070f9fbd6" string(32) "0000000022d41aa40000000070f9fbd6" Fatal error: Uncaught Error: Access to undeclared static property Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 8.0.14
string(32) "0000000037bb26cc0000000067ae5e77" string(32) "0000000037bb26cc0000000067ae5e77" Fatal error: Uncaught Error: Access to undeclared static property Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 8.0.13
string(32) "000000000627c559000000004626f838" string(32) "000000000627c559000000004626f838" Fatal error: Uncaught Error: Access to undeclared static property Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 8.0.12
string(32) "00000000379237070000000008b038ce" string(32) "00000000379237070000000008b038ce" Fatal error: Uncaught Error: Access to undeclared static property Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 8.0.11
string(32) "0000000008f2ae2c0000000036063c31" string(32) "0000000008f2ae2c0000000036063c31" Fatal error: Uncaught Error: Access to undeclared static property Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 8.0.10
string(32) "00000000045f00e20000000032808e17" string(32) "00000000045f00e20000000032808e17" Fatal error: Uncaught Error: Access to undeclared static property Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 8.0.9
string(32) "000000004df71987000000000a88aaf9" string(32) "000000004df71987000000000a88aaf9" Fatal error: Uncaught Error: Access to undeclared static property Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 8.0.8
string(32) "000000002fd75ace000000001be5d832" string(32) "000000002fd75ace000000001be5d832" Fatal error: Uncaught Error: Access to undeclared static property Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 8.0.7
string(32) "000000004da8742f000000005c7eac20" string(32) "000000004da8742f000000005c7eac20" Fatal error: Uncaught Error: Access to undeclared static property Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 8.0.6
string(32) "0000000050381d710000000075af2de3" string(32) "0000000050381d710000000075af2de3" Fatal error: Uncaught Error: Access to undeclared static property Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 8.0.5
string(32) "000000000d7aea6c0000000001927621" string(32) "000000000d7aea6c0000000001927621" Fatal error: Uncaught Error: Access to undeclared static property Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 8.0.3
string(32) "000000001c99a321000000007434fac5" string(32) "000000001c99a321000000007434fac5" Fatal error: Uncaught Error: Access to undeclared static property Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 8.0.2
string(32) "000000003e4e2ffa0000000043d6eb41" string(32) "000000003e4e2ffa0000000043d6eb41" Fatal error: Uncaught Error: Access to undeclared static property Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 8.0.1
string(32) "00000000387290120000000051397d14" string(32) "00000000387290120000000051397d14" Fatal error: Uncaught Error: Access to undeclared static property Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 8.0.0
string(32) "0000000013f74a70000000004497af68" string(32) "0000000013f74a70000000004497af68" Fatal error: Uncaught Error: Access to undeclared static property Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.4.33
string(32) "0000000073e32b990000000058a74b01" string(32) "0000000073e32b990000000058a74b01" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.4.32
string(32) "000000005f2785e3000000004abfe75c" string(32) "000000005f2785e3000000004abfe75c" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.4.30
string(32) "000000005f9f6693000000000a60a41d" string(32) "000000005f9f6693000000000a60a41d" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.4.29
string(32) "0000000019dae9e4000000007a49914d" string(32) "0000000019dae9e4000000007a49914d" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.4.28
string(32) "000000004dde7036000000007e30c764" string(32) "000000004dde7036000000007e30c764" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.4.27
string(32) "000000004f9d5f45000000006ca3b7af" string(32) "000000004f9d5f45000000006ca3b7af" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.4.26
string(32) "0000000078edd5ad000000005987b430" string(32) "0000000078edd5ad000000005987b430" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.4.25
string(32) "000000004422cf7c000000003abf22bb" string(32) "000000004422cf7c000000003abf22bb" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.4.24
string(32) "000000003fb9ca9e000000006de0ae86" string(32) "000000003fb9ca9e000000006de0ae86" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.4.23
string(32) "00000000751918eb000000007eb04e67" string(32) "00000000751918eb000000007eb04e67" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.4.22
string(32) "000000002d6d4ec3000000007e2bff6d" string(32) "000000002d6d4ec3000000007e2bff6d" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.4.21
string(32) "00000000077c70c000000000417b75ab" string(32) "00000000077c70c000000000417b75ab" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.4.20
string(32) "000000007cf92004000000005401872b" string(32) "000000007cf92004000000005401872b" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.4.16
string(32) "00000000149394290000000064c13b95" string(32) "00000000149394290000000064c13b95" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.4.15
string(32) "000000006fd8c1ba0000000050a27874" string(32) "000000006fd8c1ba0000000050a27874" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.4.14
string(32) "000000003d9654020000000003d9f968" string(32) "000000003d9654020000000003d9f968" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.4.13
string(32) "000000002dd297bb0000000008d23ff5" string(32) "000000002dd297bb0000000008d23ff5" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.4.12
string(32) "0000000002c4eb110000000038b32712" string(32) "0000000002c4eb110000000038b32712" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.4.11
string(32) "000000004cd66464000000003163fb8b" string(32) "000000004cd66464000000003163fb8b" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.4.10
string(32) "0000000031b8caaa000000004de5f38e" string(32) "0000000031b8caaa000000004de5f38e" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.4.9
string(32) "0000000048654e9f000000002973c660" string(32) "0000000048654e9f000000002973c660" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.4.8
string(32) "000000002baa514f0000000051a94ca6" string(32) "000000002baa514f0000000051a94ca6" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.4.7
string(32) "0000000021b1b60b000000002d1fe17c" string(32) "0000000021b1b60b000000002d1fe17c" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.4.6
string(32) "0000000076db7c720000000068422a90" string(32) "0000000076db7c720000000068422a90" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.4.5
string(32) "000000001b12eb51000000001e3ba879" string(32) "000000001b12eb51000000001e3ba879" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.4.4
string(32) "00000000267da5d4000000002dd99c56" string(32) "00000000267da5d4000000002dd99c56" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.4.3
string(32) "000000005876d0f30000000000211b4a" string(32) "000000005876d0f30000000000211b4a" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.4.1
string(32) "00000000265a6c3d00000000534338e7" string(32) "00000000265a6c3d00000000534338e7" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.4.0
string(32) "000000000bf43b66000000005ee02de4" string(32) "000000000bf43b66000000005ee02de4" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.3.33
string(32) "0000000055576ebf00000000537096b0" string(32) "0000000055576ebf00000000537096b0" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.3.32
string(32) "000000005bc9fda0000000007785e658" string(32) "000000005bc9fda0000000007785e658" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.3.31
string(32) "000000005a7a9cf10000000077807445" string(32) "000000005a7a9cf10000000077807445" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.3.30
string(32) "0000000002bbf1110000000008097b20" string(32) "0000000002bbf1110000000008097b20" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.3.29
string(32) "000000006084e9de0000000030d063dd" string(32) "000000006084e9de0000000030d063dd" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.3.28
string(32) "0000000037a873c100000000655ff967" string(32) "0000000037a873c100000000655ff967" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.3.27
string(32) "000000003f883f010000000023349de8" string(32) "000000003f883f010000000023349de8" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.3.26
string(32) "00000000684d22b80000000058391d5f" string(32) "00000000684d22b80000000058391d5f" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.3.25
string(32) "000000006bd82954000000006c635468" string(32) "000000006bd82954000000006c635468" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.3.24
string(32) "000000002b40e2f30000000046a79274" string(32) "000000002b40e2f30000000046a79274" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.3.23
string(32) "00000000342b42e70000000021cee5ae" string(32) "00000000342b42e70000000021cee5ae" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.3.21
string(32) "000000001f312a0e000000005e3dd47c" string(32) "000000001f312a0e000000005e3dd47c" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.3.20
string(32) "000000007169423f00000000395cc3c3" string(32) "000000007169423f00000000395cc3c3" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.3.19
string(32) "000000002c90e6d5000000006bc2c750" string(32) "000000002c90e6d5000000006bc2c750" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.3.18
string(32) "0000000042011050000000003feead08" string(32) "0000000042011050000000003feead08" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.3.17
string(32) "000000004a8b1bae00000000162a3d15" string(32) "000000004a8b1bae00000000162a3d15" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.3.16
string(32) "000000005713fb1300000000071f461c" string(32) "000000005713fb1300000000071f461c" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.3.13
string(32) "000000005e3a8f5800000000305bc5c5" string(32) "000000005e3a8f5800000000305bc5c5" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.3.12
string(32) "000000005fc4f1f400000000731c5d72" string(32) "000000005fc4f1f400000000731c5d72" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.3.11
string(32) "0000000015006ab90000000073bcefd0" string(32) "0000000015006ab90000000073bcefd0" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.1.31, 7.2.16, 7.2.23, 7.3.10
string(32) "00000000363a68dc000000002e981eff" string(32) "00000000363a68dc000000002e981eff" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.3.9
string(32) "000000002c8c084c00000000192734a4" string(32) "000000002c8c084c00000000192734a4" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.3.8
string(32) "0000000041c96b69000000004a2132d9" string(32) "0000000041c96b69000000004a2132d9" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.3.7
string(32) "00000000343d4e92000000001107e90d" string(32) "00000000343d4e92000000001107e90d" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.3.6
string(32) "000000000e701a5b000000007dd0c64c" string(32) "000000000e701a5b000000007dd0c64c" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.1.27, 7.3.5
string(32) "0000000032df8c9b000000006520ca8e" string(32) "0000000032df8c9b000000006520ca8e" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.3.4
string(32) "0000000027c4a2320000000016529d35" string(32) "0000000027c4a2320000000016529d35" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.3.3
string(32) "000000002e4638680000000035283557" string(32) "000000002e4638680000000035283557" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.3.2
string(32) "00000000019a86150000000075df64d8" string(32) "00000000019a86150000000075df64d8" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.3.1
string(32) "0000000054cf7fb50000000034d64f05" string(32) "0000000054cf7fb50000000034d64f05" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.3.0
string(32) "000000003eb162b5000000006073fc23" string(32) "000000003eb162b5000000006073fc23" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.2.33
string(32) "0000000035f42dd900000000561ced8e" string(32) "0000000035f42dd900000000561ced8e" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.2.32
string(32) "000000002ebf6f75000000007414df94" string(32) "000000002ebf6f75000000007414df94" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.2.31
string(32) "00000000332eaafe000000000b95ca11" string(32) "00000000332eaafe000000000b95ca11" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.2.30
string(32) "00000000644f3d4700000000266ce2e0" string(32) "00000000644f3d4700000000266ce2e0" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.2.29
string(32) "000000003e9dd0000000000068cea92a" string(32) "000000003e9dd0000000000068cea92a" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.2.26
string(32) "0000000021c9e923000000002be234dc" string(32) "0000000021c9e923000000002be234dc" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.2.25
string(32) "00000000316baa77000000007ae59d0f" string(32) "00000000316baa77000000007ae59d0f" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.2.10, 7.2.20, 7.2.24
string(32) "00000000085d83960000000072fbf56d" string(32) "00000000085d83960000000072fbf56d" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.2.22
string(32) "000000003f2bed3800000000261707cb" string(32) "000000003f2bed3800000000261707cb" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.2.21
string(32) "0000000036edcff1000000002995eded" string(32) "0000000036edcff1000000002995eded" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.2.19
string(32) "000000002040615900000000669ffd00" string(32) "000000002040615900000000669ffd00" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.1.29, 7.2.18
string(32) "00000000116c0e03000000004c2b3dc3" string(32) "00000000116c0e03000000004c2b3dc3" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.2.17
string(32) "000000005496ce30000000004f03f542" string(32) "000000005496ce30000000004f03f542" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.2.15
string(32) "000000007abb97c1000000006212cd99" string(32) "000000007abb97c1000000006212cd99" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.1.25, 7.2.14
string(32) "000000005da899c7000000003102ca95" string(32) "000000005da899c7000000003102ca95" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.1.14, 7.2.13
string(32) "0000000033e024b300000000016b5a3a" string(32) "0000000033e024b300000000016b5a3a" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.2.12
string(32) "0000000019e8c370000000006cf1a24d" string(32) "0000000019e8c370000000006cf1a24d" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.2.11
string(32) "0000000032832a11000000006133e3aa" string(32) "0000000032832a11000000006133e3aa" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.2.9
string(32) "000000006a3192e9000000002bb07a95" string(32) "000000006a3192e9000000002bb07a95" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.1.15, 7.2.8
string(32) "000000002a20c001000000002bacb90a" string(32) "000000002a20c001000000002bacb90a" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.1.7, 7.2.7
string(32) "00000000107b7f85000000003eb72363" string(32) "00000000107b7f85000000003eb72363" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.1.23 - 7.1.24, 7.2.6
string(32) "00000000617f539400000000143579c7" string(32) "00000000617f539400000000143579c7" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.2.5
string(32) "0000000046f4f896000000005d2685b6" string(32) "0000000046f4f896000000005d2685b6" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.1.2, 7.2.4
string(32) "00000000754ec507000000007344df9e" string(32) "00000000754ec507000000007344df9e" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.1.12, 7.2.3
string(32) "0000000061b2f26d0000000025c6df1d" string(32) "0000000061b2f26d0000000025c6df1d" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.2.2
string(32) "00000000308a3835000000003f49e4fd" string(32) "00000000308a3835000000003f49e4fd" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.1.30, 7.2.1
string(32) "0000000027e852b30000000014cf08fb" string(32) "0000000027e852b30000000014cf08fb" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.2.0
string(32) "000000003f3fb3c50000000070140434" string(32) "000000003f3fb3c50000000070140434" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.1.33
string(32) "0000000079889eda0000000021d9fd47" string(32) "0000000079889eda0000000021d9fd47" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.1.32
string(32) "000000002366bd8d00000000777fce65" string(32) "000000002366bd8d00000000777fce65" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.1.28
string(32) "0000000014917fc300000000065e26cb" string(32) "0000000014917fc300000000065e26cb" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.1.13, 7.1.26
string(32) "0000000056d088fc000000000ff399be" string(32) "0000000056d088fc000000000ff399be" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.1.22
string(32) "00000000603fcbf700000000266f91e5" string(32) "00000000603fcbf700000000266f91e5" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.1.10, 7.1.21
string(32) "000000002ca92bfe00000000353431ee" string(32) "000000002ca92bfe00000000353431ee" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.1.20
string(32) "0000000055f810e300000000294922bb" string(32) "0000000055f810e300000000294922bb" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.1.19
string(32) "000000004ab1f93d00000000157badfd" string(32) "000000004ab1f93d00000000157badfd" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.1.18
string(32) "00000000150d2e98000000003fdc1970" string(32) "00000000150d2e98000000003fdc1970" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.1.17
string(32) "000000006cb7ddc90000000073eace1f" string(32) "000000006cb7ddc90000000073eace1f" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.1.16
string(32) "00000000563da8340000000027844ebc" string(32) "00000000563da8340000000027844ebc" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.1.11
string(32) "000000002abc8d5b000000005669adb5" string(32) "000000002abc8d5b000000005669adb5" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.1.9
string(32) "000000004fe49538000000006948fb48" string(32) "000000004fe49538000000006948fb48" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.1.8
string(32) "0000000050292d7f000000004380017a" string(32) "0000000050292d7f000000004380017a" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.1.6
string(32) "00000000035e06da0000000067eefce4" string(32) "00000000035e06da0000000067eefce4" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.1.5
string(32) "000000007760278100000000258f70fd" string(32) "000000007760278100000000258f70fd" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.1.4
string(32) "000000004510ebbf000000000b6309e7" string(32) "000000004510ebbf000000000b6309e7" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.1.3
string(32) "000000000014cba60000000015070786" string(32) "000000000014cba60000000015070786" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.1.1
string(32) "00000000549737d4000000001e3b0e5f" string(32) "00000000549737d4000000001e3b0e5f" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.1.0
string(32) "000000007a6759f60000000028cdefe7" string(32) "000000007a6759f60000000028cdefe7" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.0.21, 7.0.33
string(32) "000000001739719d000000000ee4223d" string(32) "000000001739719d000000000ee4223d" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.0.12, 7.0.32
string(32) "000000006a46dbee000000003fdc1970" string(32) "000000006a46dbee000000003fdc1970" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.0.15, 7.0.31
string(32) "000000007e2ec6d2000000000c3b1f46" string(32) "000000007e2ec6d2000000000c3b1f46" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.0.17, 7.0.30
string(32) "00000000082bd2f700000000258f70fd" string(32) "00000000082bd2f700000000258f70fd" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.0.5, 7.0.9, 7.0.29
string(32) "000000001e16d3ab000000001e7e007d" string(32) "000000001e16d3ab000000001e7e007d" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.0.28
string(32) "00000000202b2c2c0000000013ba24c8" string(32) "00000000202b2c2c0000000013ba24c8" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.0.27
string(32) "00000000407446b3000000000f5ff142" string(32) "00000000407446b3000000000f5ff142" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.0.26
string(32) "00000000157a679f000000002bb07a95" string(32) "00000000157a679f000000002bb07a95" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.0.25
string(32) "0000000053e2de8800000000353431ee" string(32) "0000000053e2de8800000000353431ee" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.0.24
string(32) "00000000754d8bec00000000415c7f58" string(32) "00000000754d8bec00000000415c7f58" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.0.23
string(32) "00000000510dcd1e000000004a63c021" string(32) "00000000510dcd1e000000004a63c021" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.0.22
string(32) "00000000556b35770000000054e74c7c" string(32) "00000000556b35770000000054e74c7c" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.0.20
string(32) "0000000041fa97c3000000001f380955" string(32) "0000000041fa97c3000000001f380955" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.0.19
string(32) "00000000794914530000000052e2e07f" string(32) "00000000794914530000000052e2e07f" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.0.11, 7.0.18
string(32) "00000000299b7d8a000000000ff399be" string(32) "00000000299b7d8a000000000ff399be" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.0.16
string(32) "0000000067458e370000000048f135ff" string(32) "0000000067458e370000000048f135ff" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.0.14
string(32) "0000000068ec6b00000000003f468c44" string(32) "0000000068ec6b00000000003f468c44" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.0.13
string(32) "000000003c2af20c0000000014c0fa04" string(32) "000000003c2af20c0000000014c0fa04" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.0.10
string(32) "00000000183f24d1000000006674c587" string(32) "00000000183f24d1000000006674c587" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.0.8
string(32) "0000000042b934b600000000203fee84" string(32) "0000000042b934b600000000203fee84" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.0.7
string(32) "000000004a9e7e830000000037ae38e0" string(32) "000000004a9e7e830000000037ae38e0" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.0.6
string(32) "0000000007fc0cd80000000077ed4f89" string(32) "0000000007fc0cd80000000077ed4f89" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.0.4
string(32) "000000002f62d809000000003ccbf40c" string(32) "000000002f62d809000000003ccbf40c" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.0.3
string(32) "00000000208f0482000000000c57a804" string(32) "00000000208f0482000000000c57a804" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.0.2
string(32) "0000000067458e37000055ac058ebcff" string(32) "0000000067458e37000055ac058ebcff" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.0.1
string(32) "00000000754d8bec00005556386b9658" string(32) "00000000754d8bec00005556386b9658" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 7.0.0
string(32) "00000000305a62d5000056172c4e669d" string(32) "00000000305a62d5000056172c4e669d" Fatal error: Uncaught Error: Access to undeclared static property: Closure::$instance in /in/SD1mJ:38 Stack trace: #0 /in/SD1mJ(44): Closure->{closure}() #1 {main} thrown in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.40
string(32) "0000000043f3a02f000056419d8fd124" string(32) "0000000043f3a02f000056419d8fd124" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.39
string(32) "0000000000952b890000562d79fc847a" string(32) "0000000000952b890000562d79fc847a" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.38
string(32) "000000006307c38b0000564ee4408912" string(32) "000000006307c38b0000564ee4408912" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.37
string(32) "000000006e294ab7000055fe77e81de8" string(32) "000000006e294ab7000055fe77e81de8" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.36
string(32) "000000002180c67a0000558a76c84e11" string(32) "000000002180c67a0000558a76c84e11" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.35
string(32) "000000007080fd660000564136dc0353" string(32) "000000007080fd660000564136dc0353" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.34
string(32) "000000000437ffa70000558696fd4225" string(32) "000000000437ffa70000558696fd4225" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.33
string(32) "000000006b3eee5d00005639b9c99438" string(32) "000000006b3eee5d00005639b9c99438" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.32
string(32) "0000000077d57f810000559ba30cc90f" string(32) "0000000077d57f810000559ba30cc90f" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.31
string(32) "000000005a3d1a45000055d947aa8258" string(32) "000000005a3d1a45000055d947aa8258" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.30
string(32) "0000000052f6450500005600e3ea1df2" string(32) "0000000052f6450500005600e3ea1df2" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.29
string(32) "000000001f743e810000555bb0a6ecf3" string(32) "000000001f743e810000555bb0a6ecf3" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.28
string(32) "00000000147bbccf0000556200899c8e" string(32) "00000000147bbccf0000556200899c8e" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.27
string(32) "0000000039bf0de00000555a950f78a0" string(32) "0000000039bf0de00000555a950f78a0" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.26
string(32) "0000000021717a2e000055e6785a7da5" string(32) "0000000021717a2e000055e6785a7da5" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.25
string(32) "000000006a46dbee000055bcd16f1110" string(32) "000000006a46dbee000055bcd16f1110" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.24
string(32) "0000000044ecc3bf000055824be012d5" string(32) "0000000044ecc3bf000055824be012d5" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.23
string(32) "0000000000952b89000056326bfa047a" string(32) "0000000000952b89000056326bfa047a" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.22
string(32) "00000000658e0fef000055f5dec5cc3d" string(32) "00000000658e0fef000055f5dec5cc3d" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.21
string(32) "000000000c5b25d400005645f6f08c27" string(32) "000000000c5b25d400005645f6f08c27" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.20
string(32) "000000001bdff188000055f5c4022427" string(32) "000000001bdff188000055f5c4022427" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.19
string(32) "0000000076d48ad1000055e21fe04c4c" string(32) "0000000076d48ad1000055e21fe04c4c" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.18
string(32) "00000000009d8c370000562e18ef2cba" string(32) "00000000009d8c370000562e18ef2cba" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.17
string(32) "000000001ef9071b000055b83a18b77d" string(32) "000000001ef9071b000055b83a18b77d" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.16
string(32) "000000001e5f3c220000563f218942bd" string(32) "000000001e5f3c220000563f218942bd" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.15
string(32) "00000000147bbccf00005642314e6c8e" string(32) "00000000147bbccf00005642314e6c8e" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.14
string(32) "000000000724f9e9000055c7ec5f1db9" string(32) "000000000724f9e9000055c7ec5f1db9" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.13
string(32) "000000004e205f010000555f6ffd656f" string(32) "000000004e205f010000555f6ffd656f" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.12
string(32) "000000001ca12d6b00005649caf9b01d" string(32) "000000001ca12d6b00005649caf9b01d" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.11
string(32) "000000004567982d00005621b4123aee" string(32) "000000004567982d00005621b4123aee" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.10
string(32) "000000003dbe7483000055bdeb49feb9" string(32) "000000003dbe7483000055bdeb49feb9" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.9
string(32) "0000000051fb0e48000055c9e41ab21f" string(32) "0000000051fb0e48000055c9e41ab21f" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.8
string(32) "000000004bb94d4900005595fc9c85cf" string(32) "000000004bb94d4900005595fc9c85cf" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.7
string(32) "00000000510dcd1e000055eb0eb91861" string(32) "00000000510dcd1e000055eb0eb91861" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.6
string(32) "0000000078ad158b000056049b96fc48" string(32) "0000000078ad158b000056049b96fc48" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.5
string(32) "000000004f807c3f000055c31ef75840" string(32) "000000004f807c3f000055c31ef75840" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.4
string(32) "000000006307c38b000055a5e93286b2" string(32) "000000006307c38b000055a5e93286b2" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.3
string(32) "00000000202b2c2c0000558511505cc8" string(32) "00000000202b2c2c0000558511505cc8" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.2
string(32) "000000003a5b1ec9000056346f545491" string(32) "000000003a5b1ec9000056346f545491" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.1
string(32) "0000000045cde8970000563d051e7db9" string(32) "0000000045cde8970000563d051e7db9" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.6.0
string(32) "0000000079491453000055787a09687f" string(32) "0000000079491453000055787a09687f" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.38
string(32) "000000002cb6686800005600c540e845" string(32) "000000002cb6686800005600c540e845" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.37
string(32) "00000000662469e7000055afbf966aeb" string(32) "00000000662469e7000055afbf966aeb" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.36
string(32) "0000000042b934b6000055e8d0462604" string(32) "0000000042b934b6000055e8d0462604" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.35
string(32) "00000000009d8c37000055c1199dcc5a" string(32) "00000000009d8c37000055c1199dcc5a" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.34
string(32) "00000000741c1d9700005559a3a1a072" string(32) "00000000741c1d9700005559a3a1a072" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.33
string(32) "000000006a46dbee0000562cb4e161f0" string(32) "000000006a46dbee0000562cb4e161f0" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.32
string(32) "000000006d2700850000561c8640c2b9" string(32) "000000006d2700850000561c8640c2b9" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.31
string(32) "0000000078ad158b000055d2e8c9bc88" string(32) "0000000078ad158b000055d2e8c9bc88" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.30
string(32) "0000000079676c1d000055c9a6441f1b" string(32) "0000000079676c1d000055c9a6441f1b" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.29
string(32) "00000000658e0fef000055e8f019fcdd" string(32) "00000000658e0fef000055e8f019fcdd" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.28
string(32) "0000000075da98470000557895f3d247" string(32) "0000000075da98470000557895f3d247" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.27
string(32) "0000000006c36bac000055ec533605c7" string(32) "0000000006c36bac000055ec533605c7" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.26
string(32) "000000005f4dbe030000555f3aec3436" string(32) "000000005f4dbe030000555f3aec3436" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.25
string(32) "00000000771676e0000055c35b2b587b" string(32) "00000000771676e0000055c35b2b587b" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.24
string(32) "0000000003973f030000558e92277c06" string(32) "0000000003973f030000558e92277c06" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.23
string(32) "000000001ed42e46000055ddb16ae917" string(32) "000000001ed42e46000055ddb16ae917" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.22
string(32) "000000001b43a184000055fa49cca6fc" string(32) "000000001b43a184000055fa49cca6fc" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.21
string(32) "000000004bb94d490000559c822925ef" string(32) "000000004bb94d490000559c822925ef" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.20
string(32) "000000003771946800005601b42db614" string(32) "000000003771946800005601b42db614" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.19
string(32) "000000007f73dc76000055e5ec60c1f9" string(32) "000000007f73dc76000055e5ec60c1f9" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.18
string(32) "0000000049719daa000055d83695591f" string(32) "0000000049719daa000055d83695591f" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.17
string(32) "000000006e294ab70000560daabdd268" string(32) "000000006e294ab70000560daabdd268" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.16
string(32) "000000007867b40000005585e5c22a71" string(32) "000000007867b40000005585e5c22a71" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.15
string(32) "00000000009d8c37000055d2292ea33a" string(32) "00000000009d8c37000055d2292ea33a" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.14
string(32) "000000005a52fbcb00005610bf281d66" string(32) "000000005a52fbcb00005610bf281d66" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.13
string(32) "000000000af824ea00005574a5f6e3a8" string(32) "000000000af824ea00005574a5f6e3a8" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.12
string(32) "000000006307c38b000055893f4a4692" string(32) "000000006307c38b000055893f4a4692" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.11
string(32) "000000007c29dd8a00005652ed171b57" string(32) "000000007c29dd8a00005652ed171b57" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.10
string(32) "000000006307c38b000055fa819275d2" string(32) "000000006307c38b000055fa819275d2" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.9
string(32) "00000000015b255b000056079d3eb678" string(32) "00000000015b255b000056079d3eb678" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.8
string(32) "00000000149f988f000056339bbab5ca" string(32) "00000000149f988f000056339bbab5ca" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.7
string(32) "00000000208f048200005576af7e3784" string(32) "00000000208f048200005576af7e3784" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.6
string(32) "0000000013fc28bf0000560dbaba34e9" string(32) "0000000013fc28bf0000560dbaba34e9" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.5
string(32) "0000000013fc28bf000055b9bbb144e9" string(32) "0000000013fc28bf000055b9bbb144e9" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.4
string(32) "00000000794914530000559da6f95fff" string(32) "00000000794914530000559da6f95fff" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.3
string(32) "00000000771676e00000557aadeb5d9b" string(32) "00000000771676e00000557aadeb5d9b" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.2
string(32) "00000000183f24d1000055d201146807" string(32) "00000000183f24d1000055d201146807" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.1
string(32) "000000006b3eee5d00000000908ee1d8" string(32) "000000006b3eee5d00000000908ee1d8" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.5.0
string(32) "000000007ac9f90b00000000ea367060" string(32) "000000007ac9f90b00000000ea367060" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.45
string(32) "000000007638578600000000ba2930b7" string(32) "000000007638578600000000ba2930b7" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.44
string(32) "00000000374c2d7000000000060838f5" string(32) "00000000374c2d7000000000060838f5" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.43
string(32) "0000000073b7821100000000f2b54fb9" string(32) "0000000073b7821100000000f2b54fb9" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.42
string(32) "0000000053e2de88000000007202124e" string(32) "0000000053e2de88000000007202124e" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.41
string(32) "00000000510dcd1e0000000099608021" string(32) "00000000510dcd1e0000000099608021" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.40
string(32) "000000005f4dbe03000000007c3bf356" string(32) "000000005f4dbe03000000007c3bf356" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.39
string(32) "0000000044f7795e000000004f581d3b" string(32) "0000000044f7795e000000004f581d3b" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.38
string(32) "0000000048614592000000001cda497c" string(32) "0000000048614592000000001cda497c" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.37
string(32) "00000000662469e70000000028fa5d8b" string(32) "00000000662469e70000000028fa5d8b" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.36
string(32) "0000000015c1f78c00000000bb14ea82" string(32) "0000000015c1f78c00000000bb14ea82" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.35
string(32) "000000004545418e0000000066726f2f" string(32) "000000004545418e0000000066726f2f" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.34
string(32) "00000000688e8acb00000000273fbf68" string(32) "00000000688e8acb00000000273fbf68" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.33
string(32) "0000000007fc0cd80000000064ece069" string(32) "0000000007fc0cd80000000064ece069" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.32
string(32) "000000006a46dbee00000000f4bea690" string(32) "000000006a46dbee00000000f4bea690" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.31
string(32) "0000000044ecc3bf000000002904b555" string(32) "0000000044ecc3bf000000002904b555" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.30
string(32) "000000002ab3e595000000008fe92d5b" string(32) "000000002ab3e595000000008fe92d5b" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.29
string(32) "00000000705d197a00000000ac93fee1" string(32) "00000000705d197a00000000ac93fee1" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.28
string(32) "000000001e5f3c22000000006798353d" string(32) "000000001e5f3c22000000006798353d" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.27
string(32) "00000000202b2c2c000000000947eb28" string(32) "00000000202b2c2c000000000947eb28" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.26
string(32) "0000000045f703af00000000aafad003" string(32) "0000000045f703af00000000aafad003" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.25
string(32) "000000006b82773100000000baf3f4b7" string(32) "000000006b82773100000000baf3f4b7" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.24
string(32) "000000001e5f3c22000000007f40053d" string(32) "000000001e5f3c22000000007f40053d" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.23
string(32) "000000004a9e7e83000000002a34e200" string(32) "000000004a9e7e83000000002a34e200" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.22
string(32) "00000000624caf480000000000da0b03" string(32) "00000000624caf480000000000da0b03" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.21
string(32) "000000005e21800200000000a67b1e85" string(32) "000000005e21800200000000a67b1e85" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.20
string(32) "000000002fdb85f7000000003d8046a4" string(32) "000000002fdb85f7000000003d8046a4" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.19
string(32) "0000000076391c5c0000000060f0d5b1" string(32) "0000000076391c5c0000000060f0d5b1" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.18
string(32) "000000001f743e8100000000ddfd6e73" string(32) "000000001f743e8100000000ddfd6e73" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.17
string(32) "00000000673213e7000000001300862e" string(32) "00000000673213e7000000001300862e" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.16
string(32) "000000004fc1cd4300000000595a7b4b" string(32) "000000004fc1cd4300000000595a7b4b" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.15
string(32) "00000000588f574400000000d84b87f5" string(32) "00000000588f574400000000d84b87f5" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.14
string(32) "00000000349dad6b00000000b484499e" string(32) "00000000349dad6b00000000b484499e" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.13
string(32) "00000000486081b7000000001baa6666" string(32) "00000000486081b7000000001baa6666" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.12
string(32) "000000006fff8bb400000000ad59eca9" string(32) "000000006fff8bb400000000ad59eca9" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.11
string(32) "000000001f4e3c2e000000002a61ec08" string(32) "000000001f4e3c2e000000002a61ec08" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.10
string(32) "0000000011d2f010000000003ac16dfe" string(32) "0000000011d2f010000000003ac16dfe" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.9
string(32) "000000007f73dc7600000000f9cc7cd9" string(32) "000000007f73dc7600000000f9cc7cd9" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.8
string(32) "0000000039e2dfc7000000001340844a" string(32) "0000000039e2dfc7000000001340844a" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.7
string(32) "000000004dc8df67000000006b62596a" string(32) "000000004dc8df67000000006b62596a" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.6
string(32) "000000007ff947640000000009ca7c63" string(32) "000000007ff947640000000009ca7c63" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.5
string(32) "0000000028ce7ac200000000a081b6bf" string(32) "0000000028ce7ac200000000a081b6bf" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.4
string(32) "0000000028ecb78d00000000fb78c6d9" string(32) "0000000028ecb78d00000000fb78c6d9" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.3
string(32) "000000005d93e95600000000f554fd7b" string(32) "000000005d93e95600000000f554fd7b" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.2
string(32) "000000006719a4d1000000004f3e31b0" string(32) "000000006719a4d1000000004f3e31b0" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.1
string(32) "000000005a1707a40000000068b8f441" string(32) "000000005a1707a40000000068b8f441" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.4.0
string(32) "000000000fa34d8a000000009fa76c72" string(32) "000000000fa34d8a000000009fa76c72" Fatal error: Access to undeclared static property: Closure::$instance in /in/SD1mJ on line 38
Process exited with code 255.
Output for 5.3.29
string(32) "0000000075e4aba900000000321a6087" string(32) "0000000075e4aba900000000321a6087" Fatal error: Call to undefined method Closure::bindTo() in /in/SD1mJ on line 42
Process exited with code 255.
Output for 5.3.28
string(32) "0000000075e4aba90000000032157b27" string(32) "0000000075e4aba90000000032157b27" Fatal error: Call to undefined method Closure::bindTo() in /in/SD1mJ on line 42
Process exited with code 255.
Output for 5.3.27
string(32) "0000000075e4aba90000000032154b27" string(32) "0000000075e4aba90000000032154b27" Fatal error: Call to undefined method Closure::bindTo() in /in/SD1mJ on line 42
Process exited with code 255.
Output for 5.3.26
string(32) "0000000075e4aba90000000032155c67" string(32) "0000000075e4aba90000000032155c67" Fatal error: Call to undefined method Closure::bindTo() in /in/SD1mJ on line 42
Process exited with code 255.
Output for 5.3.25
string(32) "0000000075e4aba900000000321560a7" string(32) "0000000075e4aba900000000321560a7" Fatal error: Call to undefined method Closure::bindTo() in /in/SD1mJ on line 42
Process exited with code 255.
Output for 5.3.24
string(32) "0000000041d06066000000000676e28b" string(32) "0000000041d06066000000000676e28b" Fatal error: Call to undefined method Closure::bindTo() in /in/SD1mJ on line 42
Process exited with code 255.
Output for 5.3.23
string(32) "0000000075e4aba900000000321502a7" string(32) "0000000075e4aba900000000321502a7" Fatal error: Call to undefined method Closure::bindTo() in /in/SD1mJ on line 42
Process exited with code 255.
Output for 5.3.22
string(32) "0000000075e4aba900000000321481a7" string(32) "0000000075e4aba900000000321481a7" Fatal error: Call to undefined method Closure::bindTo() in /in/SD1mJ on line 42
Process exited with code 255.
Output for 5.3.21
string(32) "0000000041d0606600000000067703eb" string(32) "0000000041d0606600000000067703eb" Fatal error: Call to undefined method Closure::bindTo() in /in/SD1mJ on line 42
Process exited with code 255.
Output for 5.3.20
string(32) "0000000041d06066000000000677044b" string(32) "0000000041d06066000000000677044b" Fatal error: Call to undefined method Closure::bindTo() in /in/SD1mJ on line 42
Process exited with code 255.
Output for 5.3.19
string(32) "0000000075e4aba900000000321484c7" string(32) "0000000075e4aba900000000321484c7" Fatal error: Call to undefined method Closure::bindTo() in /in/SD1mJ on line 42
Process exited with code 255.
Output for 5.3.18
string(32) "0000000075e4aba90000000032148c07" string(32) "0000000075e4aba90000000032148c07" Fatal error: Call to undefined method Closure::bindTo() in /in/SD1mJ on line 42
Process exited with code 255.
Output for 5.3.17
string(32) "0000000075e4aba90000000032148b07" string(32) "0000000075e4aba90000000032148b07" Fatal error: Call to undefined method Closure::bindTo() in /in/SD1mJ on line 42
Process exited with code 255.
Output for 5.3.16
string(32) "0000000075e4aba90000000032148fa7" string(32) "0000000075e4aba90000000032148fa7" Fatal error: Call to undefined method Closure::bindTo() in /in/SD1mJ on line 42
Process exited with code 255.
Output for 5.3.15
string(32) "0000000075e4aba90000000032148fc7" string(32) "0000000075e4aba90000000032148fc7" Fatal error: Call to undefined method Closure::bindTo() in /in/SD1mJ on line 42
Process exited with code 255.
Output for 5.3.14
string(32) "0000000075e4aba9000000003214ae87" string(32) "0000000075e4aba9000000003214ae87" Fatal error: Call to undefined method Closure::bindTo() in /in/SD1mJ on line 42
Process exited with code 255.
Output for 5.3.11, 5.3.13
string(32) "0000000075e4aba9000000003214bee7" string(32) "0000000075e4aba9000000003214bee7" Fatal error: Call to undefined method Closure::bindTo() in /in/SD1mJ on line 42
Process exited with code 255.
Output for 5.3.12
string(32) "0000000041d060660000000006773e0b" string(32) "0000000041d060660000000006773e0b" Fatal error: Call to undefined method Closure::bindTo() in /in/SD1mJ on line 42
Process exited with code 255.
Output for 5.3.10
string(32) "0000000075e4aba900000000320c7387" string(32) "0000000075e4aba900000000320c7387" Fatal error: Call to undefined method Closure::bindTo() in /in/SD1mJ on line 42
Process exited with code 255.
Output for 5.3.9
string(32) "0000000075e4aba900000000320c3f07" string(32) "0000000075e4aba900000000320c3f07" Fatal error: Call to undefined method Closure::bindTo() in /in/SD1mJ on line 42
Process exited with code 255.
Output for 5.3.8
string(32) "0000000075e4aba900000000320fc8e7" string(32) "0000000075e4aba900000000320fc8e7" Fatal error: Call to undefined method Closure::bindTo() in /in/SD1mJ on line 42
Process exited with code 255.
Output for 5.3.7
string(32) "0000000075e4aba900000000320fc8c7" string(32) "0000000075e4aba900000000320fc8c7" Fatal error: Call to undefined method Closure::bindTo() in /in/SD1mJ on line 42
Process exited with code 255.
Output for 5.3.6
string(32) "0000000041d0606600000000066c4f0b" string(32) "0000000041d0606600000000066c4f0b" Fatal error: Call to undefined method Closure::bindTo() in /in/SD1mJ on line 42
Process exited with code 255.
Output for 5.3.4 - 5.3.5
string(32) "0000000075e4aba900000000320f0fc7" string(32) "0000000075e4aba900000000320f0fc7" Fatal error: Call to undefined method Closure::bindTo() in /in/SD1mJ on line 42
Process exited with code 255.
Output for 5.3.3
string(32) "0000000075e4aba900000000320e9fa7" string(32) "0000000075e4aba900000000320e9fa7" Fatal error: Call to undefined method Closure::bindTo() in /in/SD1mJ on line 42
Process exited with code 255.
Output for 5.3.2
string(32) "0000000075e4aba900000000320b6167" string(32) "0000000075e4aba900000000320b6167" Fatal error: Call to undefined method Closure::bindTo() in /in/SD1mJ on line 42
Process exited with code 255.
Output for 5.3.1
string(32) "000000001e89cd66000000007a91dd30" string(32) "000000001e89cd66000000007a91dd30" Fatal error: Call to undefined method Closure::bindTo() in /in/SD1mJ on line 42
Process exited with code 255.
Output for 5.3.0
string(32) "000000001e89cd66000000007a9172b0" string(32) "000000001e89cd66000000007a9172b0" Fatal error: Call to undefined method Closure::bindTo() in /in/SD1mJ on line 42
Process exited with code 255.
Output for 5.1.0 - 5.1.6, 5.2.0 - 5.2.17
Parse error: syntax error, unexpected T_STATIC, expecting T_STRING or T_VARIABLE or '$' in /in/SD1mJ on line 16
Process exited with code 255.
Output for 5.0.0 - 5.0.5
Parse error: parse error, unexpected T_STATIC, expecting T_STRING or T_VARIABLE or '$' in /in/SD1mJ on line 16
Process exited with code 255.
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/SD1mJ on line 6
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1
Parse error: parse error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/SD1mJ on line 6
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `T_OLD_FUNCTION' or `T_FUNCTION' or `T_VAR' or `'}'' in /in/SD1mJ on line 6
Process exited with code 255.

preferences:
301.41 ms | 401 KiB | 459 Q