Files
LesRecettesDePapis/src/Domain/Ingredients/Ingredient.php

18 lines
253 B
PHP
Raw Normal View History

2026-04-02 16:33:32 +02:00
<?php
namespace App\Domain\Ingredients;
use App\Domain\Model;
class Ingredient extends Model {
public int $num_ingredient;
public string $nom_ingredient;
2026-04-02 18:10:47 +02:00
public function getID(): int
{
return $this->num_ingredient;
}
2026-04-02 16:33:32 +02:00
}