1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
- namespace yii\db;
- final class PdoValue implements ExpressionInterface
- {
-
- private $value;
-
- private $type;
-
- public function __construct($value, $type)
- {
- $this->value = $value;
- $this->type = $type;
- }
-
- public function getValue()
- {
- return $this->value;
- }
-
- public function getType()
- {
- return $this->type;
- }
- }
|