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
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;
}
}