<?php class Position { private $productId; private $count; private $createdAt; public function __construct(int $productId, int $count = 1) { $this->count = $count; $this->createdAt = new DateTimeImmutable('now'); } } $position = new Position(1); $secondPosition = new Position(1); var_dump($position == $secondPosition);
You have javascript disabled. You will not be able to edit any code.