for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Copyright © 2018 Thomas Klein, All rights reserved.
* See LICENSE bundled with this library for license details.
*/
declare(strict_types=1);
namespace LogicTree\Operator\Logical;
use LogicTree\Operator\OperatorInterface;
* Class NandOperator
*
* The NAND:
* The output is "false" if both inputs are "true". Otherwise, the output is "true".
final class NandOperator implements OperatorInterface
{
public const CODE = 'nand';
* {@inheritdoc}
public function execute(...$expressions): bool
$count = \count($expressions);
$result = $expressions[0];
for ($i = 1; $i < $count; $i++) {
$result = !($result && $expressions[$i]);
}
return $result;