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.
12 lines
371 B
12 lines
371 B
<?php
|
|
class EnigmeFactory{
|
|
public static function create($results)
|
|
{
|
|
$tabEnigme=array();
|
|
foreach($results as $row)
|
|
{
|
|
$tabEnigme[]= new Enigme($row['id'],$row['admin'],$row['enonce'],$row['aide'],$row['rappel'],$row['solution'],$row['test'],$row['tempsDeResolution'],$row['points']);
|
|
}
|
|
return $tabEnigme;
|
|
}
|
|
} |