namespace user\login\SystemCommand; class Command extends SystemCommand { ... private function transaction (){ ... $date = new DateTime(); $date->add(DateInterval::createFromDateString('yesterday')); $time = $date->format(\DateTime::RFC3339); ... } ... echo $this->yad_transaction(); } Why a PHP error occurs Fatal error: Class 'user \ login \ SystemCommand \ DateTime' not found in ...
$date = new \DateTime();- add slash - splash58