<?php class SomeParent { public function __construct(private DateTime $d) { } } class SomeChild extends SomeParent { public function __construct(private DateTime $d) { parent::__construct($d); } public function run() { return $this->d->format('Y-m-d'); } } $c = new SomeChild(new DateTime('now')); var_dump($c->run());
You have javascript disabled. You will not be able to edit any code.