web-base/core/Driver/SQL/Condition/CondIn.class.php
2021-12-08 16:54:53 +01:00

17 lines
351 B
PHP

<?php
namespace Driver\SQL\Condition;
class CondIn extends Condition {
private $needle;
private $haystack;
public function __construct($needle, $haystack) {
$this->needle = $needle;
$this->haystack = $haystack;
}
public function getNeedle() { return $this->needle; }
public function getHaystack() { return $this->haystack; }
}