1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
- namespace yii\db\conditions;
- class HashCondition implements ConditionInterface
- {
-
- private $hash;
-
- public function __construct($hash)
- {
- $this->hash = $hash;
- }
-
- public function getHash()
- {
- return $this->hash;
- }
-
- public static function fromArrayDefinition($operator, $operands)
- {
- return new static($operands);
- }
- }
|