* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Security\Core\Authorization\Strategy; /** * A strategy for turning a stream of votes into a final decision. * * @author Alexander M. Turek */ interface AccessDecisionStrategyInterface { /** * @param \Traversable $results */ public function decide(\Traversable $results): bool; }