You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Scripted/WEB/Factory/EnigmeFactory.php

12 lines
385 B

<?php
class EnigmeFactory{
public static function create($results)
{
$tabEnigme=array();
foreach($results as $row)
{
$tabEnigme[]= new Enigme($row['id'],$row['nom'],$row['enonce'],$row['aide'],$row['rappel'],$row['exemple'],$row['solution'],$row['test'],$row['tempsDeResolution'],$row['points']);
}
return $tabEnigme;
}
}