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/Factory/EnigmeFactory.php

13 lines
428 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['ordre'],$row['tempsDeResolution'],$row['points'], $row['prompt']);
}
return $tabEnigme;
}
}