for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
Condorcet PHP Class, with Schulze Methods and others !
By Julien Boudry - MIT LICENSE (Please read LICENSE.txt)
https://github.com/julien-boudry/Condorcet
*/
declare(strict_types=1);
namespace Condorcet\Algo\Tools;
use Condorcet\Vote;
class VirtualVote
{
public static function removeCandidates (Vote $vote, array $candidatesList) : Vote
($virtualVote = clone $vote)->removeCandidates($candidatesList);
return $virtualVote;
}