web-base/Core/Driver/SQL/Condition/CondIn.class.php

17 lines
356 B
PHP
Raw Normal View History

<?php
2022-11-18 18:06:46 +01:00
namespace Core\Driver\SQL\Condition;
class CondIn extends Condition {
2021-12-08 16:53:43 +01:00
private $needle;
private $haystack;
2021-12-08 16:53:43 +01:00
public function __construct($needle, $haystack) {
$this->needle = $needle;
$this->haystack = $haystack;
}
2021-12-08 16:53:43 +01:00
public function getNeedle() { return $this->needle; }
public function getHaystack() { return $this->haystack; }
}