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

17 lines
351 B
PHP
Raw Normal View History

<?php
namespace 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; }
}