2020-12-04 01:31:37 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
|
|
class Hystorique
|
|
|
|
{
|
|
|
|
private int $id;
|
|
|
|
private Utilisateur $utilisateur;
|
|
|
|
private Spot $spot;
|
|
|
|
private Pointage $pointage;
|
2020-12-04 02:52:32 +01:00
|
|
|
|
|
|
|
public function __construct(int $id, Utilisateur $utilisateur, Spot $spot, Pointage $pointage)
|
|
|
|
{
|
|
|
|
$this->id=$id;
|
|
|
|
$this->utilisateur=$utilisateur;
|
|
|
|
$this->spot=$spot;
|
|
|
|
$this->pointage=$pointage;
|
|
|
|
}
|
2020-12-04 01:31:37 +01:00
|
|
|
}
|