3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Base { public static function foo() { return static::class; } public static function bar() { return get_called_class(); } } class Child extends Base {} profile("Parent, static::class", function () { Base::foo();}); profile("Parent, get_called_class", function () { Base::bar();}); profile("Child, static::class", function () { Child::foo();}); profile("Child, get_called_class", function () { Child::bar();}); function profile($what, callable $func) { static $previous; if (!$previous) $previous = microtime(true); for ($a = 0; $a<=1000000; $a++) { $func(); }; $now = microtime(true); echo sprintf("%s took %.4f seconds", $what, $now - $previous), PHP_EOL; $previous = $now; }
Output for 8.2.3
Parent, static::class took 0.0347 seconds Parent, get_called_class took 0.0346 seconds Child, static::class took 0.0364 seconds Child, get_called_class took 0.0331 seconds
Output for 8.2.2
Parent, static::class took 0.0352 seconds Parent, get_called_class took 0.0329 seconds Child, static::class took 0.0346 seconds Child, get_called_class took 0.0315 seconds
Output for 8.2.1
Parent, static::class took 0.0366 seconds Parent, get_called_class took 0.0340 seconds Child, static::class took 0.0379 seconds Child, get_called_class took 0.0344 seconds
Output for 8.2.0
Parent, static::class took 0.0360 seconds Parent, get_called_class took 0.0339 seconds Child, static::class took 0.0371 seconds Child, get_called_class took 0.0341 seconds
Output for 8.1.16
Parent, static::class took 0.0337 seconds Parent, get_called_class took 0.0316 seconds Child, static::class took 0.0328 seconds Child, get_called_class took 0.0325 seconds
Output for 8.1.15
Parent, static::class took 0.0367 seconds Parent, get_called_class took 0.0365 seconds Child, static::class took 0.0368 seconds Child, get_called_class took 0.0340 seconds
Output for 8.1.14
Parent, static::class took 0.0344 seconds Parent, get_called_class took 0.0316 seconds Child, static::class took 0.0357 seconds Child, get_called_class took 0.0331 seconds
Output for 8.1.13
Parent, static::class took 0.0362 seconds Parent, get_called_class took 0.0325 seconds Child, static::class took 0.0351 seconds Child, get_called_class took 0.0332 seconds
Output for 8.1.12
Parent, static::class took 0.0363 seconds Parent, get_called_class took 0.0337 seconds Child, static::class took 0.0364 seconds Child, get_called_class took 0.0336 seconds
Output for 8.1.11
Parent, static::class took 0.0320 seconds Parent, get_called_class took 0.0324 seconds Child, static::class took 0.0355 seconds Child, get_called_class took 0.0359 seconds
Output for 8.1.10
Parent, static::class took 0.0340 seconds Parent, get_called_class took 0.0329 seconds Child, static::class took 0.0340 seconds Child, get_called_class took 0.0302 seconds
Output for 8.1.9
Parent, static::class took 0.0346 seconds Parent, get_called_class took 0.0323 seconds Child, static::class took 0.0331 seconds Child, get_called_class took 0.0318 seconds
Output for 8.1.8
Parent, static::class took 0.0351 seconds Parent, get_called_class took 0.0339 seconds Child, static::class took 0.0340 seconds Child, get_called_class took 0.0322 seconds
Output for 8.1.7
Parent, static::class took 0.0354 seconds Parent, get_called_class took 0.0339 seconds Child, static::class took 0.0363 seconds Child, get_called_class took 0.0330 seconds
Output for 8.1.6
Parent, static::class took 0.0317 seconds Parent, get_called_class took 0.0312 seconds Child, static::class took 0.0314 seconds Child, get_called_class took 0.0302 seconds
Output for 8.1.5
Parent, static::class took 0.0349 seconds Parent, get_called_class took 0.0313 seconds Child, static::class took 0.0351 seconds Child, get_called_class took 0.0318 seconds
Output for 8.1.4
Parent, static::class took 0.0338 seconds Parent, get_called_class took 0.0313 seconds Child, static::class took 0.0344 seconds Child, get_called_class took 0.0303 seconds
Output for 8.1.3
Parent, static::class took 0.0354 seconds Parent, get_called_class took 0.0331 seconds Child, static::class took 0.0363 seconds Child, get_called_class took 0.0326 seconds
Output for 8.1.2
Parent, static::class took 0.0358 seconds Parent, get_called_class took 0.0337 seconds Child, static::class took 0.0393 seconds Child, get_called_class took 0.0313 seconds
Output for 8.1.1
Parent, static::class took 0.0332 seconds Parent, get_called_class took 0.0337 seconds Child, static::class took 0.0346 seconds Child, get_called_class took 0.0326 seconds
Output for 8.1.0
Parent, static::class took 0.0351 seconds Parent, get_called_class took 0.0340 seconds Child, static::class took 0.0366 seconds Child, get_called_class took 0.0330 seconds
Output for 8.0.28
Parent, static::class took 0.0353 seconds Parent, get_called_class took 0.0343 seconds Child, static::class took 0.0369 seconds Child, get_called_class took 0.0339 seconds
Output for 8.0.27
Parent, static::class took 0.0359 seconds Parent, get_called_class took 0.0323 seconds Child, static::class took 0.0355 seconds Child, get_called_class took 0.0320 seconds
Output for 8.0.26
Parent, static::class took 0.0346 seconds Parent, get_called_class took 0.0316 seconds Child, static::class took 0.0332 seconds Child, get_called_class took 0.0318 seconds
Output for 8.0.25
Parent, static::class took 0.0403 seconds Parent, get_called_class took 0.0305 seconds Child, static::class took 0.0401 seconds Child, get_called_class took 0.0319 seconds
Output for 8.0.24
Parent, static::class took 0.0322 seconds Parent, get_called_class took 0.0302 seconds Child, static::class took 0.0312 seconds Child, get_called_class took 0.0302 seconds
Output for 8.0.23
Parent, static::class took 0.0345 seconds Parent, get_called_class took 0.0324 seconds Child, static::class took 0.0362 seconds Child, get_called_class took 0.0322 seconds
Output for 8.0.22
Parent, static::class took 0.0343 seconds Parent, get_called_class took 0.0319 seconds Child, static::class took 0.0335 seconds Child, get_called_class took 0.0318 seconds
Output for 8.0.21
Parent, static::class took 0.0328 seconds Parent, get_called_class took 0.0330 seconds Child, static::class took 0.0333 seconds Child, get_called_class took 0.0346 seconds
Output for 8.0.20
Parent, static::class took 0.0327 seconds Parent, get_called_class took 0.0311 seconds Child, static::class took 0.0318 seconds Child, get_called_class took 0.0311 seconds
Output for 8.0.19
Parent, static::class took 0.0335 seconds Parent, get_called_class took 0.0335 seconds Child, static::class took 0.0332 seconds Child, get_called_class took 0.0309 seconds
Output for 8.0.18
Parent, static::class took 0.0317 seconds Parent, get_called_class took 0.0303 seconds Child, static::class took 0.0315 seconds Child, get_called_class took 0.0302 seconds
Output for 8.0.17
Parent, static::class took 0.0318 seconds Parent, get_called_class took 0.0304 seconds Child, static::class took 0.0311 seconds Child, get_called_class took 0.0301 seconds
Output for 8.0.16
Parent, static::class took 0.0352 seconds Parent, get_called_class took 0.0314 seconds Child, static::class took 0.0350 seconds Child, get_called_class took 0.0304 seconds
Output for 8.0.15
Parent, static::class took 0.0327 seconds Parent, get_called_class took 0.0306 seconds Child, static::class took 0.0321 seconds Child, get_called_class took 0.0306 seconds
Output for 8.0.14
Parent, static::class took 0.0339 seconds Parent, get_called_class took 0.0320 seconds Child, static::class took 0.0341 seconds Child, get_called_class took 0.0323 seconds
Output for 8.0.13
Parent, static::class took 0.0335 seconds Parent, get_called_class took 0.0408 seconds Child, static::class took 0.0350 seconds Child, get_called_class took 0.0407 seconds
Output for 8.0.12
Parent, static::class took 0.0346 seconds Parent, get_called_class took 0.0401 seconds Child, static::class took 0.0371 seconds Child, get_called_class took 0.0400 seconds
Output for 8.0.11
Parent, static::class took 0.0324 seconds Parent, get_called_class took 0.0309 seconds Child, static::class took 0.0321 seconds Child, get_called_class took 0.0310 seconds
Output for 8.0.10
Parent, static::class took 0.0391 seconds Parent, get_called_class took 0.0311 seconds Child, static::class took 0.0391 seconds Child, get_called_class took 0.0312 seconds
Output for 8.0.9
Parent, static::class took 0.0327 seconds Parent, get_called_class took 0.0315 seconds Child, static::class took 0.0326 seconds Child, get_called_class took 0.0315 seconds
Output for 8.0.8
Parent, static::class took 0.0397 seconds Parent, get_called_class took 0.0304 seconds Child, static::class took 0.0394 seconds Child, get_called_class took 0.0319 seconds
Output for 8.0.7
Parent, static::class took 0.0401 seconds Parent, get_called_class took 0.0322 seconds Child, static::class took 0.0402 seconds Child, get_called_class took 0.0321 seconds
Output for 8.0.6
Parent, static::class took 0.0398 seconds Parent, get_called_class took 0.0320 seconds Child, static::class took 0.0397 seconds Child, get_called_class took 0.0311 seconds
Output for 8.0.5
Parent, static::class took 0.0401 seconds Parent, get_called_class took 0.0316 seconds Child, static::class took 0.0398 seconds Child, get_called_class took 0.0314 seconds
Output for 8.0.3
Parent, static::class took 0.0334 seconds Parent, get_called_class took 0.0346 seconds Child, static::class took 0.0346 seconds Child, get_called_class took 0.0346 seconds
Output for 8.0.2
Parent, static::class took 0.0332 seconds Parent, get_called_class took 0.0318 seconds Child, static::class took 0.0330 seconds Child, get_called_class took 0.0319 seconds
Output for 8.0.1
Parent, static::class took 0.0358 seconds Parent, get_called_class took 0.0326 seconds Child, static::class took 0.0373 seconds Child, get_called_class took 0.0310 seconds
Output for 8.0.0
Parent, static::class took 0.0358 seconds Parent, get_called_class took 0.0332 seconds Child, static::class took 0.0361 seconds Child, get_called_class took 0.0338 seconds
Output for 7.4.33
Parent, static::class took 0.0449 seconds Parent, get_called_class took 0.0425 seconds Child, static::class took 0.0438 seconds Child, get_called_class took 0.0426 seconds
Output for 7.4.32
Parent, static::class took 0.0423 seconds Parent, get_called_class took 0.0416 seconds Child, static::class took 0.0419 seconds Child, get_called_class took 0.0412 seconds
Output for 7.4.30
Parent, static::class took 0.0431 seconds Parent, get_called_class took 0.0424 seconds Child, static::class took 0.0433 seconds Child, get_called_class took 0.0428 seconds
Output for 7.4.29
Parent, static::class took 0.0432 seconds Parent, get_called_class took 0.0430 seconds Child, static::class took 0.0447 seconds Child, get_called_class took 0.0432 seconds
Output for 7.4.28
Parent, static::class took 0.0442 seconds Parent, get_called_class took 0.0431 seconds Child, static::class took 0.0446 seconds Child, get_called_class took 0.0432 seconds
Output for 7.4.27
Parent, static::class took 0.0465 seconds Parent, get_called_class took 0.0459 seconds Child, static::class took 0.0475 seconds Child, get_called_class took 0.0457 seconds
Output for 7.4.26
Parent, static::class took 0.0441 seconds Parent, get_called_class took 0.0436 seconds Child, static::class took 0.0441 seconds Child, get_called_class took 0.0432 seconds
Output for 7.4.25
Parent, static::class took 0.0453 seconds Parent, get_called_class took 0.0453 seconds Child, static::class took 0.0468 seconds Child, get_called_class took 0.0478 seconds
Output for 7.4.24
Parent, static::class took 0.0456 seconds Parent, get_called_class took 0.0447 seconds Child, static::class took 0.0456 seconds Child, get_called_class took 0.0435 seconds
Output for 7.4.23
Parent, static::class took 0.0431 seconds Parent, get_called_class took 0.0419 seconds Child, static::class took 0.0445 seconds Child, get_called_class took 0.0420 seconds
Output for 7.4.22
Parent, static::class took 0.0431 seconds Parent, get_called_class took 0.0413 seconds Child, static::class took 0.0428 seconds Child, get_called_class took 0.0414 seconds
Output for 7.4.21
Parent, static::class took 0.0435 seconds Parent, get_called_class took 0.0430 seconds Child, static::class took 0.0448 seconds Child, get_called_class took 0.0430 seconds
Output for 7.4.20
Parent, static::class took 0.0451 seconds Parent, get_called_class took 0.0429 seconds Child, static::class took 0.0454 seconds Child, get_called_class took 0.0429 seconds
Output for 7.4.19
Parent, static::class took 0.0444 seconds Parent, get_called_class took 0.0426 seconds Child, static::class took 0.0443 seconds Child, get_called_class took 0.0425 seconds
Output for 7.4.18
Parent, static::class took 0.0444 seconds Parent, get_called_class took 0.0426 seconds Child, static::class took 0.0444 seconds Child, get_called_class took 0.0424 seconds
Output for 7.4.16
Parent, static::class took 0.0453 seconds Parent, get_called_class took 0.0421 seconds Child, static::class took 0.0462 seconds Child, get_called_class took 0.0456 seconds
Output for 7.4.15
Parent, static::class took 0.0460 seconds Parent, get_called_class took 0.0480 seconds Child, static::class took 0.0488 seconds Child, get_called_class took 0.0490 seconds
Output for 7.4.14
Parent, static::class took 0.0437 seconds Parent, get_called_class took 0.0409 seconds Child, static::class took 0.0426 seconds Child, get_called_class took 0.0407 seconds
Output for 7.4.13
Parent, static::class took 0.0457 seconds Parent, get_called_class took 0.0447 seconds Child, static::class took 0.0456 seconds Child, get_called_class took 0.0436 seconds
Output for 7.4.12
Parent, static::class took 0.0463 seconds Parent, get_called_class took 0.0436 seconds Child, static::class took 0.0477 seconds Child, get_called_class took 0.0435 seconds
Output for 7.4.11
Parent, static::class took 0.0427 seconds Parent, get_called_class took 0.0400 seconds Child, static::class took 0.0426 seconds Child, get_called_class took 0.0400 seconds
Output for 7.4.10
Parent, static::class took 0.0425 seconds Parent, get_called_class took 0.0406 seconds Child, static::class took 0.0422 seconds Child, get_called_class took 0.0406 seconds
Output for 7.4.9
Parent, static::class took 0.0448 seconds Parent, get_called_class took 0.0469 seconds Child, static::class took 0.0453 seconds Child, get_called_class took 0.0433 seconds
Output for 7.4.8
Parent, static::class took 0.0441 seconds Parent, get_called_class took 0.0419 seconds Child, static::class took 0.0452 seconds Child, get_called_class took 0.0422 seconds
Output for 7.4.7
Parent, static::class took 0.0440 seconds Parent, get_called_class took 0.0422 seconds Child, static::class took 0.0442 seconds Child, get_called_class took 0.0428 seconds
Output for 7.4.6
Parent, static::class took 0.0439 seconds Parent, get_called_class took 0.0422 seconds Child, static::class took 0.0445 seconds Child, get_called_class took 0.0421 seconds
Output for 7.4.5
Parent, static::class took 0.0440 seconds Parent, get_called_class took 0.0415 seconds Child, static::class took 0.0437 seconds Child, get_called_class took 0.0415 seconds
Output for 7.4.4
Parent, static::class took 0.0409 seconds Parent, get_called_class took 0.0399 seconds Child, static::class took 0.0419 seconds Child, get_called_class took 0.0394 seconds
Output for 7.4.3
Parent, static::class took 0.0439 seconds Parent, get_called_class took 0.0422 seconds Child, static::class took 0.0441 seconds Child, get_called_class took 0.0438 seconds
Output for 7.4.2
Parent, static::class took 0.0439 seconds Parent, get_called_class took 0.0437 seconds Child, static::class took 0.0458 seconds Child, get_called_class took 0.0434 seconds
Output for 7.4.1
Parent, static::class took 0.0442 seconds Parent, get_called_class took 0.0422 seconds Child, static::class took 0.0432 seconds Child, get_called_class took 0.0423 seconds
Output for 7.4.0
Parent, static::class took 0.0465 seconds Parent, get_called_class took 0.0431 seconds Child, static::class took 0.0447 seconds Child, get_called_class took 0.0432 seconds
Output for 7.3.33
Parent, static::class took 0.0514 seconds Parent, get_called_class took 0.0441 seconds Child, static::class took 0.0488 seconds Child, get_called_class took 0.0442 seconds
Output for 7.3.32
Parent, static::class took 0.0493 seconds Parent, get_called_class took 0.0446 seconds Child, static::class took 0.0478 seconds Child, get_called_class took 0.0449 seconds
Output for 7.3.31
Parent, static::class took 0.0498 seconds Parent, get_called_class took 0.0452 seconds Child, static::class took 0.0476 seconds Child, get_called_class took 0.0455 seconds
Output for 7.3.30
Parent, static::class took 0.0489 seconds Parent, get_called_class took 0.0427 seconds Child, static::class took 0.0468 seconds Child, get_called_class took 0.0423 seconds
Output for 7.3.29
Parent, static::class took 0.0472 seconds Parent, get_called_class took 0.0468 seconds Child, static::class took 0.0476 seconds Child, get_called_class took 0.0463 seconds
Output for 7.3.28
Parent, static::class took 0.0466 seconds Parent, get_called_class took 0.0462 seconds Child, static::class took 0.0485 seconds Child, get_called_class took 0.0450 seconds
Output for 7.3.27
Parent, static::class took 0.0465 seconds Parent, get_called_class took 0.0449 seconds Child, static::class took 0.0474 seconds Child, get_called_class took 0.0449 seconds
Output for 7.3.26
Parent, static::class took 0.0470 seconds Parent, get_called_class took 0.0451 seconds Child, static::class took 0.0456 seconds Child, get_called_class took 0.0447 seconds
Output for 7.3.25
Parent, static::class took 0.0477 seconds Parent, get_called_class took 0.0443 seconds Child, static::class took 0.0461 seconds Child, get_called_class took 0.0445 seconds
Output for 7.3.24
Parent, static::class took 0.0487 seconds Parent, get_called_class took 0.0478 seconds Child, static::class took 0.0483 seconds Child, get_called_class took 0.0470 seconds
Output for 7.3.23
Parent, static::class took 0.0467 seconds Parent, get_called_class took 0.0450 seconds Child, static::class took 0.0453 seconds Child, get_called_class took 0.0449 seconds
Output for 7.3.22
Parent, static::class took 0.0484 seconds Parent, get_called_class took 0.0498 seconds Child, static::class took 0.0489 seconds Child, get_called_class took 0.0471 seconds
Output for 7.3.21
Parent, static::class took 0.0493 seconds Parent, get_called_class took 0.0502 seconds Child, static::class took 0.0486 seconds Child, get_called_class took 0.0480 seconds
Output for 7.3.20
Parent, static::class took 0.0526 seconds Parent, get_called_class took 0.0489 seconds Child, static::class took 0.0543 seconds Child, get_called_class took 0.0484 seconds
Output for 7.3.19
Parent, static::class took 0.0461 seconds Parent, get_called_class took 0.0438 seconds Child, static::class took 0.0451 seconds Child, get_called_class took 0.0437 seconds
Output for 7.3.18
Parent, static::class took 0.0449 seconds Parent, get_called_class took 0.0443 seconds Child, static::class took 0.0453 seconds Child, get_called_class took 0.0444 seconds
Output for 7.3.17
Parent, static::class took 0.0473 seconds Parent, get_called_class took 0.0440 seconds Child, static::class took 0.0471 seconds Child, get_called_class took 0.0433 seconds
Output for 7.3.16
Parent, static::class took 0.0461 seconds Parent, get_called_class took 0.0443 seconds Child, static::class took 0.0457 seconds Child, get_called_class took 0.0442 seconds
Output for 7.3.15
Parent, static::class took 0.0478 seconds Parent, get_called_class took 0.0457 seconds Child, static::class took 0.0468 seconds Child, get_called_class took 0.0475 seconds
Output for 7.3.14
Parent, static::class took 0.0456 seconds Parent, get_called_class took 0.0452 seconds Child, static::class took 0.0453 seconds Child, get_called_class took 0.0455 seconds
Output for 7.3.13
Parent, static::class took 0.0523 seconds Parent, get_called_class took 0.0489 seconds Child, static::class took 0.0509 seconds Child, get_called_class took 0.0486 seconds
Output for 7.3.12
Parent, static::class took 0.0510 seconds Parent, get_called_class took 0.0439 seconds Child, static::class took 0.0487 seconds Child, get_called_class took 0.0446 seconds
Output for 7.3.11
Parent, static::class took 0.0493 seconds Parent, get_called_class took 0.0502 seconds Child, static::class took 0.0517 seconds Child, get_called_class took 0.0499 seconds
Output for 7.3.10
Parent, static::class took 0.0494 seconds Parent, get_called_class took 0.0448 seconds Child, static::class took 0.0502 seconds Child, get_called_class took 0.0450 seconds
Output for 7.3.9
Parent, static::class took 0.0514 seconds Parent, get_called_class took 0.0476 seconds Child, static::class took 0.0521 seconds Child, get_called_class took 0.0477 seconds
Output for 7.3.8
Parent, static::class took 0.0511 seconds Parent, get_called_class took 0.0466 seconds Child, static::class took 0.0500 seconds Child, get_called_class took 0.0453 seconds
Output for 7.3.7
Parent, static::class took 0.0547 seconds Parent, get_called_class took 0.0504 seconds Child, static::class took 0.0569 seconds Child, get_called_class took 0.0491 seconds
Output for 7.3.6
Parent, static::class took 0.0484 seconds Parent, get_called_class took 0.0458 seconds Child, static::class took 0.0469 seconds Child, get_called_class took 0.0463 seconds
Output for 7.3.5
Parent, static::class took 0.0495 seconds Parent, get_called_class took 0.0478 seconds Child, static::class took 0.0494 seconds Child, get_called_class took 0.0478 seconds
Output for 7.3.4
Parent, static::class took 0.0508 seconds Parent, get_called_class took 0.0471 seconds Child, static::class took 0.0482 seconds Child, get_called_class took 0.0498 seconds
Output for 7.3.3
Parent, static::class took 0.0468 seconds Parent, get_called_class took 0.0461 seconds Child, static::class took 0.0477 seconds Child, get_called_class took 0.0450 seconds
Output for 7.3.2
Parent, static::class took 0.0495 seconds Parent, get_called_class took 0.0473 seconds Child, static::class took 0.0489 seconds Child, get_called_class took 0.0463 seconds
Output for 7.3.1
Parent, static::class took 0.0495 seconds Parent, get_called_class took 0.0437 seconds Child, static::class took 0.0487 seconds Child, get_called_class took 0.0460 seconds
Output for 7.3.0
Parent, static::class took 0.0549 seconds Parent, get_called_class took 0.0526 seconds Child, static::class took 0.0562 seconds Child, get_called_class took 0.0520 seconds
Output for 7.2.34
Parent, static::class took 0.0532 seconds Parent, get_called_class took 0.0535 seconds Child, static::class took 0.0521 seconds Child, get_called_class took 0.0536 seconds
Output for 7.2.33
Parent, static::class took 0.0513 seconds Parent, get_called_class took 0.0572 seconds Child, static::class took 0.0514 seconds Child, get_called_class took 0.0533 seconds
Output for 7.2.32
Parent, static::class took 0.0513 seconds Parent, get_called_class took 0.0514 seconds Child, static::class took 0.0530 seconds Child, get_called_class took 0.0514 seconds
Output for 7.2.31
Parent, static::class took 0.0487 seconds Parent, get_called_class took 0.0500 seconds Child, static::class took 0.0493 seconds Child, get_called_class took 0.0496 seconds
Output for 7.2.30
Parent, static::class took 0.0490 seconds Parent, get_called_class took 0.0497 seconds Child, static::class took 0.0487 seconds Child, get_called_class took 0.0496 seconds
Output for 7.2.29
Parent, static::class took 0.0494 seconds Parent, get_called_class took 0.0515 seconds Child, static::class took 0.0513 seconds Child, get_called_class took 0.0511 seconds
Output for 7.2.28
Parent, static::class took 0.0493 seconds Parent, get_called_class took 0.0490 seconds Child, static::class took 0.0490 seconds Child, get_called_class took 0.0492 seconds
Output for 7.2.27
Parent, static::class took 0.0512 seconds Parent, get_called_class took 0.0500 seconds Child, static::class took 0.0506 seconds Child, get_called_class took 0.0502 seconds
Output for 7.2.26
Parent, static::class took 0.0527 seconds Parent, get_called_class took 0.0501 seconds Child, static::class took 0.0514 seconds Child, get_called_class took 0.0501 seconds
Output for 7.2.25
Parent, static::class took 0.0537 seconds Parent, get_called_class took 0.0489 seconds Child, static::class took 0.0545 seconds Child, get_called_class took 0.0490 seconds
Output for 7.2.24
Parent, static::class took 0.0499 seconds Parent, get_called_class took 0.0518 seconds Child, static::class took 0.0500 seconds Child, get_called_class took 0.0500 seconds
Output for 7.2.23
Parent, static::class took 0.0512 seconds Parent, get_called_class took 0.0519 seconds Child, static::class took 0.0536 seconds Child, get_called_class took 0.0522 seconds
Output for 7.2.22
Parent, static::class took 0.0525 seconds Parent, get_called_class took 0.0522 seconds Child, static::class took 0.0504 seconds Child, get_called_class took 0.0520 seconds
Output for 7.2.21
Parent, static::class took 0.0518 seconds Parent, get_called_class took 0.0489 seconds Child, static::class took 0.0524 seconds Child, get_called_class took 0.0490 seconds
Output for 7.2.20
Parent, static::class took 0.0497 seconds Parent, get_called_class took 0.0477 seconds Child, static::class took 0.0520 seconds Child, get_called_class took 0.0476 seconds
Output for 7.2.19
Parent, static::class took 0.0516 seconds Parent, get_called_class took 0.0538 seconds Child, static::class took 0.0525 seconds Child, get_called_class took 0.0502 seconds
Output for 7.2.18
Parent, static::class took 0.0536 seconds Parent, get_called_class took 0.0491 seconds Child, static::class took 0.0533 seconds Child, get_called_class took 0.0490 seconds
Output for 7.2.17
Parent, static::class took 0.0504 seconds Parent, get_called_class took 0.0518 seconds Child, static::class took 0.0506 seconds Child, get_called_class took 0.0519 seconds
Output for 7.2.16
Parent, static::class took 0.0497 seconds Parent, get_called_class took 0.0515 seconds Child, static::class took 0.0494 seconds Child, get_called_class took 0.0512 seconds
Output for 7.2.15
Parent, static::class took 0.0521 seconds Parent, get_called_class took 0.0478 seconds Child, static::class took 0.0533 seconds Child, get_called_class took 0.0479 seconds
Output for 7.2.14
Parent, static::class took 0.0530 seconds Parent, get_called_class took 0.0490 seconds Child, static::class took 0.0531 seconds Child, get_called_class took 0.0485 seconds
Output for 7.2.13
Parent, static::class took 0.0576 seconds Parent, get_called_class took 0.0531 seconds Child, static::class took 0.0538 seconds Child, get_called_class took 0.0513 seconds
Output for 7.2.12
Parent, static::class took 0.0631 seconds Parent, get_called_class took 0.0571 seconds Child, static::class took 0.0605 seconds Child, get_called_class took 0.0542 seconds
Output for 7.2.11
Parent, static::class took 0.0529 seconds Parent, get_called_class took 0.0492 seconds Child, static::class took 0.0527 seconds Child, get_called_class took 0.0483 seconds
Output for 7.2.10
Parent, static::class took 0.0551 seconds Parent, get_called_class took 0.0517 seconds Child, static::class took 0.0541 seconds Child, get_called_class took 0.0506 seconds
Output for 7.2.9
Parent, static::class took 0.0533 seconds Parent, get_called_class took 0.0490 seconds Child, static::class took 0.0546 seconds Child, get_called_class took 0.0485 seconds
Output for 7.2.8
Parent, static::class took 0.0528 seconds Parent, get_called_class took 0.0477 seconds Child, static::class took 0.0521 seconds Child, get_called_class took 0.0511 seconds
Output for 7.2.7
Parent, static::class took 0.0539 seconds Parent, get_called_class took 0.0525 seconds Child, static::class took 0.0559 seconds Child, get_called_class took 0.0499 seconds
Output for 7.2.6
Parent, static::class took 0.0568 seconds Parent, get_called_class took 0.0511 seconds Child, static::class took 0.0551 seconds Child, get_called_class took 0.0531 seconds
Output for 7.2.5
Parent, static::class took 0.0554 seconds Parent, get_called_class took 0.0537 seconds Child, static::class took 0.0570 seconds Child, get_called_class took 0.0538 seconds
Output for 7.2.4
Parent, static::class took 0.0552 seconds Parent, get_called_class took 0.0541 seconds Child, static::class took 0.0551 seconds Child, get_called_class took 0.0536 seconds
Output for 7.2.3
Parent, static::class took 0.0550 seconds Parent, get_called_class took 0.0545 seconds Child, static::class took 0.0568 seconds Child, get_called_class took 0.0535 seconds
Output for 7.2.2
Parent, static::class took 0.0514 seconds Parent, get_called_class took 0.0498 seconds Child, static::class took 0.0509 seconds Child, get_called_class took 0.0497 seconds
Output for 7.2.1
Parent, static::class took 0.0515 seconds Parent, get_called_class took 0.0498 seconds Child, static::class took 0.0519 seconds Child, get_called_class took 0.0494 seconds
Output for 7.2.0
Parent, static::class took 0.0498 seconds Parent, get_called_class took 0.0526 seconds Child, static::class took 0.0514 seconds Child, get_called_class took 0.0510 seconds
Output for 7.1.33
Parent, static::class took 0.0564 seconds Parent, get_called_class took 0.0696 seconds Child, static::class took 0.0571 seconds Child, get_called_class took 0.0694 seconds
Output for 7.1.32
Parent, static::class took 0.0558 seconds Parent, get_called_class took 0.0698 seconds Child, static::class took 0.0573 seconds Child, get_called_class took 0.0702 seconds
Output for 7.1.31
Parent, static::class took 0.0535 seconds Parent, get_called_class took 0.0652 seconds Child, static::class took 0.0546 seconds Child, get_called_class took 0.0654 seconds
Output for 7.1.30
Parent, static::class took 0.0533 seconds Parent, get_called_class took 0.0654 seconds Child, static::class took 0.0554 seconds Child, get_called_class took 0.0650 seconds
Output for 7.1.29
Parent, static::class took 0.0550 seconds Parent, get_called_class took 0.0675 seconds Child, static::class took 0.0550 seconds Child, get_called_class took 0.0682 seconds
Output for 7.1.28
Parent, static::class took 0.0554 seconds Parent, get_called_class took 0.0670 seconds Child, static::class took 0.0554 seconds Child, get_called_class took 0.0674 seconds
Output for 7.1.27
Parent, static::class took 0.0556 seconds Parent, get_called_class took 0.0690 seconds Child, static::class took 0.0564 seconds Child, get_called_class took 0.0716 seconds
Output for 7.1.26
Parent, static::class took 0.0556 seconds Parent, get_called_class took 0.0696 seconds Child, static::class took 0.0563 seconds Child, get_called_class took 0.0703 seconds
Output for 7.1.25
Parent, static::class took 0.0560 seconds Parent, get_called_class took 0.0677 seconds Child, static::class took 0.0551 seconds Child, get_called_class took 0.0681 seconds
Output for 7.1.24
Parent, static::class took 0.0553 seconds Parent, get_called_class took 0.0703 seconds Child, static::class took 0.0567 seconds Child, get_called_class took 0.0698 seconds
Output for 7.1.23
Parent, static::class took 0.0555 seconds Parent, get_called_class took 0.0673 seconds Child, static::class took 0.0556 seconds Child, get_called_class took 0.0666 seconds
Output for 7.1.22
Parent, static::class took 0.0558 seconds Parent, get_called_class took 0.0699 seconds Child, static::class took 0.0563 seconds Child, get_called_class took 0.0668 seconds
Output for 7.1.21
Parent, static::class took 0.0586 seconds Parent, get_called_class took 0.0685 seconds Child, static::class took 0.0604 seconds Child, get_called_class took 0.0676 seconds
Output for 7.1.20
Parent, static::class took 0.0544 seconds Parent, get_called_class took 0.0661 seconds Child, static::class took 0.0558 seconds Child, get_called_class took 0.0664 seconds
Output for 7.1.19
Parent, static::class took 0.0554 seconds Parent, get_called_class took 0.0681 seconds Child, static::class took 0.0569 seconds Child, get_called_class took 0.0669 seconds
Output for 7.1.18
Parent, static::class took 0.0552 seconds Parent, get_called_class took 0.0721 seconds Child, static::class took 0.0563 seconds Child, get_called_class took 0.0699 seconds
Output for 7.1.17
Parent, static::class took 0.0555 seconds Parent, get_called_class took 0.0666 seconds Child, static::class took 0.0564 seconds Child, get_called_class took 0.0662 seconds
Output for 7.1.16
Parent, static::class took 0.0568 seconds Parent, get_called_class took 0.0668 seconds Child, static::class took 0.0548 seconds Child, get_called_class took 0.0690 seconds
Output for 7.1.15
Parent, static::class took 0.0551 seconds Parent, get_called_class took 0.0675 seconds Child, static::class took 0.0549 seconds Child, get_called_class took 0.0660 seconds
Output for 7.1.14
Parent, static::class took 0.0567 seconds Parent, get_called_class took 0.0691 seconds Child, static::class took 0.0562 seconds Child, get_called_class took 0.0672 seconds
Output for 7.1.13
Parent, static::class took 0.0528 seconds Parent, get_called_class took 0.0665 seconds Child, static::class took 0.0540 seconds Child, get_called_class took 0.0669 seconds
Output for 7.1.12
Parent, static::class took 0.0551 seconds Parent, get_called_class took 0.0681 seconds Child, static::class took 0.0566 seconds Child, get_called_class took 0.0693 seconds
Output for 7.1.11
Parent, static::class took 0.0551 seconds Parent, get_called_class took 0.0649 seconds Child, static::class took 0.0558 seconds Child, get_called_class took 0.0660 seconds
Output for 7.1.10
Parent, static::class took 0.0550 seconds Parent, get_called_class took 0.0655 seconds Child, static::class took 0.0564 seconds Child, get_called_class took 0.0675 seconds
Output for 7.1.9
Parent, static::class took 0.0559 seconds Parent, get_called_class took 0.0653 seconds Child, static::class took 0.0552 seconds Child, get_called_class took 0.0668 seconds
Output for 7.1.8
Parent, static::class took 0.0548 seconds Parent, get_called_class took 0.0675 seconds Child, static::class took 0.0570 seconds Child, get_called_class took 0.0677 seconds
Output for 7.1.7
Parent, static::class took 0.0563 seconds Parent, get_called_class took 0.0682 seconds Child, static::class took 0.0559 seconds Child, get_called_class took 0.0666 seconds
Output for 7.1.6
Parent, static::class took 0.0558 seconds Parent, get_called_class took 0.0656 seconds Child, static::class took 0.0550 seconds Child, get_called_class took 0.0663 seconds
Output for 7.1.5
Parent, static::class took 0.0546 seconds Parent, get_called_class took 0.0665 seconds Child, static::class took 0.0541 seconds Child, get_called_class took 0.0650 seconds
Output for 7.1.4
Parent, static::class took 0.0533 seconds Parent, get_called_class took 0.0645 seconds Child, static::class took 0.0527 seconds Child, get_called_class took 0.0655 seconds
Output for 7.1.3
Parent, static::class took 0.0542 seconds Parent, get_called_class took 0.0660 seconds Child, static::class took 0.0555 seconds Child, get_called_class took 0.0660 seconds
Output for 7.1.2
Parent, static::class took 0.0551 seconds Parent, get_called_class took 0.0734 seconds Child, static::class took 0.0564 seconds Child, get_called_class took 0.0731 seconds
Output for 7.1.1
Parent, static::class took 0.0573 seconds Parent, get_called_class took 0.0742 seconds Child, static::class took 0.0600 seconds Child, get_called_class took 0.0703 seconds
Output for 7.1.0
Parent, static::class took 0.0548 seconds Parent, get_called_class took 0.0669 seconds Child, static::class took 0.0563 seconds Child, get_called_class took 0.0686 seconds
Output for 7.0.33
Parent, static::class took 0.0507 seconds Parent, get_called_class took 0.0637 seconds Child, static::class took 0.0516 seconds Child, get_called_class took 0.0673 seconds
Output for 7.0.32
Parent, static::class took 0.0516 seconds Parent, get_called_class took 0.0640 seconds Child, static::class took 0.0512 seconds Child, get_called_class took 0.0675 seconds
Output for 7.0.31
Parent, static::class took 0.0511 seconds Parent, get_called_class took 0.0637 seconds Child, static::class took 0.0509 seconds Child, get_called_class took 0.0673 seconds
Output for 7.0.30
Parent, static::class took 0.0504 seconds Parent, get_called_class took 0.0641 seconds Child, static::class took 0.0516 seconds Child, get_called_class took 0.0641 seconds
Output for 7.0.29
Parent, static::class took 0.0500 seconds Parent, get_called_class took 0.0624 seconds Child, static::class took 0.0500 seconds Child, get_called_class took 0.0625 seconds
Output for 7.0.28
Parent, static::class took 0.0522 seconds Parent, get_called_class took 0.0651 seconds Child, static::class took 0.0510 seconds Child, get_called_class took 0.0655 seconds
Output for 7.0.27
Parent, static::class took 0.0514 seconds Parent, get_called_class took 0.0662 seconds Child, static::class took 0.0515 seconds Child, get_called_class took 0.0669 seconds
Output for 7.0.26
Parent, static::class took 0.0540 seconds Parent, get_called_class took 0.0687 seconds Child, static::class took 0.0511 seconds Child, get_called_class took 0.0684 seconds
Output for 7.0.25
Parent, static::class took 0.0503 seconds Parent, get_called_class took 0.0631 seconds Child, static::class took 0.0502 seconds Child, get_called_class took 0.0633 seconds
Output for 7.0.24
Parent, static::class took 0.0499 seconds Parent, get_called_class took 0.0623 seconds Child, static::class took 0.0500 seconds Child, get_called_class took 0.0622 seconds
Output for 7.0.23
Parent, static::class took 0.0496 seconds Parent, get_called_class took 0.0595 seconds Child, static::class took 0.0512 seconds Child, get_called_class took 0.0614 seconds
Output for 7.0.22
Parent, static::class took 0.0501 seconds Parent, get_called_class took 0.0643 seconds Child, static::class took 0.0513 seconds Child, get_called_class took 0.0606 seconds
Output for 7.0.21
Parent, static::class took 0.0507 seconds Parent, get_called_class took 0.0629 seconds Child, static::class took 0.0511 seconds Child, get_called_class took 0.0618 seconds
Output for 7.0.20
Parent, static::class took 0.0502 seconds Parent, get_called_class took 0.0623 seconds Child, static::class took 0.0502 seconds Child, get_called_class took 0.0653 seconds
Output for 7.0.19
Parent, static::class took 0.0512 seconds Parent, get_called_class took 0.0652 seconds Child, static::class took 0.0519 seconds Child, get_called_class took 0.0650 seconds
Output for 7.0.18
Parent, static::class took 0.0524 seconds Parent, get_called_class took 0.0646 seconds Child, static::class took 0.0514 seconds Child, get_called_class took 0.0648 seconds
Output for 7.0.17
Parent, static::class took 0.0499 seconds Parent, get_called_class took 0.0634 seconds Child, static::class took 0.0501 seconds Child, get_called_class took 0.0636 seconds
Output for 7.0.16
Parent, static::class took 0.0502 seconds Parent, get_called_class took 0.0637 seconds Child, static::class took 0.0501 seconds Child, get_called_class took 0.0633 seconds
Output for 7.0.15
Parent, static::class took 0.0504 seconds Parent, get_called_class took 0.0652 seconds Child, static::class took 0.0523 seconds Child, get_called_class took 0.0647 seconds
Output for 7.0.14
Parent, static::class took 0.0503 seconds Parent, get_called_class took 0.0650 seconds Child, static::class took 0.0503 seconds Child, get_called_class took 0.0654 seconds
Output for 7.0.13
Parent, static::class took 0.0516 seconds Parent, get_called_class took 0.0651 seconds Child, static::class took 0.0531 seconds Child, get_called_class took 0.0656 seconds
Output for 7.0.12
Parent, static::class took 0.0506 seconds Parent, get_called_class took 0.0636 seconds Child, static::class took 0.0511 seconds Child, get_called_class took 0.0645 seconds
Output for 7.0.11
Parent, static::class took 0.0509 seconds Parent, get_called_class took 0.0666 seconds Child, static::class took 0.0518 seconds Child, get_called_class took 0.0674 seconds
Output for 7.0.10
Parent, static::class took 0.0505 seconds Parent, get_called_class took 0.0673 seconds Child, static::class took 0.0529 seconds Child, get_called_class took 0.0669 seconds
Output for 7.0.9
Parent, static::class took 0.0500 seconds Parent, get_called_class took 0.0649 seconds Child, static::class took 0.0534 seconds Child, get_called_class took 0.0681 seconds
Output for 7.0.8
Parent, static::class took 0.0496 seconds Parent, get_called_class took 0.0609 seconds Child, static::class took 0.0512 seconds Child, get_called_class took 0.0617 seconds
Output for 7.0.7
Parent, static::class took 0.0499 seconds Parent, get_called_class took 0.0648 seconds Child, static::class took 0.0521 seconds Child, get_called_class took 0.0669 seconds
Output for 7.0.6
Parent, static::class took 0.0495 seconds Parent, get_called_class took 0.0618 seconds Child, static::class took 0.0491 seconds Child, get_called_class took 0.0631 seconds
Output for 7.0.5
Parent, static::class took 0.0509 seconds Parent, get_called_class took 0.0652 seconds Child, static::class took 0.0517 seconds Child, get_called_class took 0.0654 seconds
Output for 7.0.4
Parent, static::class took 0.0526 seconds Parent, get_called_class took 0.0643 seconds Child, static::class took 0.0515 seconds Child, get_called_class took 0.0633 seconds
Output for 7.0.3
Parent, static::class took 0.0503 seconds Parent, get_called_class took 0.0640 seconds Child, static::class took 0.0502 seconds Child, get_called_class took 0.0641 seconds
Output for 7.0.2
Parent, static::class took 0.0484 seconds Parent, get_called_class took 0.0621 seconds Child, static::class took 0.0484 seconds Child, get_called_class took 0.0610 seconds
Output for 7.0.1
Parent, static::class took 0.0519 seconds Parent, get_called_class took 0.0622 seconds Child, static::class took 0.0501 seconds Child, get_called_class took 0.0625 seconds
Output for 7.0.0
Parent, static::class took 0.0497 seconds Parent, get_called_class took 0.0635 seconds Child, static::class took 0.0496 seconds Child, get_called_class took 0.0634 seconds
Output for 5.6.40
Parent, static::class took 0.1317 seconds Parent, get_called_class took 0.1527 seconds Child, static::class took 0.1343 seconds Child, get_called_class took 0.1521 seconds
Output for 5.6.39
Parent, static::class took 0.1434 seconds Parent, get_called_class took 0.1578 seconds Child, static::class took 0.1412 seconds Child, get_called_class took 0.1583 seconds
Output for 5.6.38
Parent, static::class took 0.1340 seconds Parent, get_called_class took 0.1549 seconds Child, static::class took 0.1353 seconds Child, get_called_class took 0.1526 seconds
Output for 5.6.37
Parent, static::class took 0.1294 seconds Parent, get_called_class took 0.1533 seconds Child, static::class took 0.1310 seconds Child, get_called_class took 0.1523 seconds
Output for 5.6.36
Parent, static::class took 0.1299 seconds Parent, get_called_class took 0.1519 seconds Child, static::class took 0.1331 seconds Child, get_called_class took 0.1529 seconds
Output for 5.6.35
Parent, static::class took 0.1305 seconds Parent, get_called_class took 0.1474 seconds Child, static::class took 0.1298 seconds Child, get_called_class took 0.1506 seconds
Output for 5.6.34
Parent, static::class took 0.1341 seconds Parent, get_called_class took 0.1515 seconds Child, static::class took 0.1344 seconds Child, get_called_class took 0.1525 seconds
Output for 5.6.33
Parent, static::class took 0.1351 seconds Parent, get_called_class took 0.1552 seconds Child, static::class took 0.1359 seconds Child, get_called_class took 0.1574 seconds
Output for 5.6.32
Parent, static::class took 0.1306 seconds Parent, get_called_class took 0.1548 seconds Child, static::class took 0.1296 seconds Child, get_called_class took 0.1549 seconds
Output for 5.6.31
Parent, static::class took 0.1358 seconds Parent, get_called_class took 0.1549 seconds Child, static::class took 0.1361 seconds Child, get_called_class took 0.1551 seconds
Output for 5.6.30
Parent, static::class took 0.1340 seconds Parent, get_called_class took 0.1568 seconds Child, static::class took 0.1369 seconds Child, get_called_class took 0.1572 seconds
Output for 5.6.29
Parent, static::class took 0.1369 seconds Parent, get_called_class took 0.1556 seconds Child, static::class took 0.1378 seconds Child, get_called_class took 0.1604 seconds
Output for 5.6.28
Parent, static::class took 0.1335 seconds Parent, get_called_class took 0.1536 seconds Child, static::class took 0.1298 seconds Child, get_called_class took 0.1554 seconds
Output for 5.6.27
Parent, static::class took 0.1351 seconds Parent, get_called_class took 0.1452 seconds Child, static::class took 0.1357 seconds Child, get_called_class took 0.1454 seconds
Output for 5.6.26
Parent, static::class took 0.1295 seconds Parent, get_called_class took 0.1534 seconds Child, static::class took 0.1311 seconds Child, get_called_class took 0.1544 seconds
Output for 5.6.25
Parent, static::class took 0.1448 seconds Parent, get_called_class took 0.1637 seconds Child, static::class took 0.1507 seconds Child, get_called_class took 0.1597 seconds
Output for 5.6.24
Parent, static::class took 0.1370 seconds Parent, get_called_class took 0.1529 seconds Child, static::class took 0.1389 seconds Child, get_called_class took 0.1545 seconds
Output for 5.6.23
Parent, static::class took 0.1374 seconds Parent, get_called_class took 0.1487 seconds Child, static::class took 0.1376 seconds Child, get_called_class took 0.1509 seconds
Output for 5.6.22
Parent, static::class took 0.1414 seconds Parent, get_called_class took 0.1517 seconds Child, static::class took 0.1390 seconds Child, get_called_class took 0.1513 seconds
Output for 5.6.21
Parent, static::class took 0.1446 seconds Parent, get_called_class took 0.1607 seconds Child, static::class took 0.1441 seconds Child, get_called_class took 0.1595 seconds
Output for 5.6.20
Parent, static::class took 0.1412 seconds Parent, get_called_class took 0.1554 seconds Child, static::class took 0.1453 seconds Child, get_called_class took 0.1582 seconds
Output for 5.6.19
Parent, static::class took 0.1474 seconds Parent, get_called_class took 0.1651 seconds Child, static::class took 0.1461 seconds Child, get_called_class took 0.1655 seconds
Output for 5.6.18
Parent, static::class took 0.1384 seconds Parent, get_called_class took 0.1567 seconds Child, static::class took 0.1361 seconds Child, get_called_class took 0.1542 seconds
Output for 5.6.17
Parent, static::class took 0.1365 seconds Parent, get_called_class took 0.1551 seconds Child, static::class took 0.1362 seconds Child, get_called_class took 0.1553 seconds
Output for 5.6.16
Parent, static::class took 0.1344 seconds Parent, get_called_class took 0.1603 seconds Child, static::class took 0.1364 seconds Child, get_called_class took 0.1590 seconds
Output for 5.6.15
Parent, static::class took 0.1302 seconds Parent, get_called_class took 0.1546 seconds Child, static::class took 0.1311 seconds Child, get_called_class took 0.1560 seconds
Output for 5.6.14
Parent, static::class took 0.1346 seconds Parent, get_called_class took 0.1496 seconds Child, static::class took 0.1373 seconds Child, get_called_class took 0.1501 seconds
Output for 5.6.13
Parent, static::class took 0.1386 seconds Parent, get_called_class took 0.1546 seconds Child, static::class took 0.1402 seconds Child, get_called_class took 0.1545 seconds
Output for 5.6.12
Parent, static::class took 0.1407 seconds Parent, get_called_class took 0.1563 seconds Child, static::class took 0.1407 seconds Child, get_called_class took 0.1558 seconds
Output for 5.6.11
Parent, static::class took 0.1387 seconds Parent, get_called_class took 0.1590 seconds Child, static::class took 0.1437 seconds Child, get_called_class took 0.1577 seconds
Output for 5.6.10
Parent, static::class took 0.1441 seconds Parent, get_called_class took 0.1614 seconds Child, static::class took 0.1442 seconds Child, get_called_class took 0.1619 seconds
Output for 5.6.9
Parent, static::class took 0.1421 seconds Parent, get_called_class took 0.1591 seconds Child, static::class took 0.1448 seconds Child, get_called_class took 0.1574 seconds
Output for 5.6.8
Parent, static::class took 0.1309 seconds Parent, get_called_class took 0.1483 seconds Child, static::class took 0.1331 seconds Child, get_called_class took 0.1460 seconds
Output for 5.6.7
Parent, static::class took 0.1392 seconds Parent, get_called_class took 0.1525 seconds Child, static::class took 0.1362 seconds Child, get_called_class took 0.1563 seconds
Output for 5.6.6
Parent, static::class took 0.1429 seconds Parent, get_called_class took 0.1477 seconds Child, static::class took 0.1449 seconds Child, get_called_class took 0.1494 seconds
Output for 5.6.5
Parent, static::class took 0.1454 seconds Parent, get_called_class took 0.1488 seconds Child, static::class took 0.1439 seconds Child, get_called_class took 0.1490 seconds
Output for 5.6.4
Parent, static::class took 0.1359 seconds Parent, get_called_class took 0.1467 seconds Child, static::class took 0.1380 seconds Child, get_called_class took 0.1455 seconds
Output for 5.6.3
Parent, static::class took 0.1446 seconds Parent, get_called_class took 0.1565 seconds Child, static::class took 0.1416 seconds Child, get_called_class took 0.1583 seconds
Output for 5.6.2
Parent, static::class took 0.1307 seconds Parent, get_called_class took 0.1662 seconds Child, static::class took 0.1304 seconds Child, get_called_class took 0.1682 seconds
Output for 5.6.1
Parent, static::class took 0.1316 seconds Parent, get_called_class took 0.1523 seconds Child, static::class took 0.1303 seconds Child, get_called_class took 0.1518 seconds
Output for 5.6.0
Parent, static::class took 0.1339 seconds Parent, get_called_class took 0.1513 seconds Child, static::class took 0.1342 seconds Child, get_called_class took 0.1491 seconds

preferences:
62.28 ms | 815 KiB | 5 Q