Beispiel #1
0
 public static function decoysFromLocations($locations)
 {
     $decoys = [];
     foreach ($locations as $location) {
         $t = new Target();
         $t->location()->associate($location);
         $t->is_decoy = true;
         $decoys[] = $t;
     }
     return $decoys;
 }