| 1 |
<?php |
| 2 |
|
| 3 |
namespace FluentBooking\Framework\Database\Query; |
| 4 |
|
| 5 |
use FluentBooking\Framework\Database\BaseGrammar; |
| 6 |
|
| 7 |
interface ExpressionInterface |
| 8 |
{ |
| 9 |
/** |
| 10 |
* Get the value of the expression. |
| 11 |
* |
| 12 |
* @param \FluentBooking\Framework\Database\BaseGrammar $grammar |
| 13 |
* @return string|int|float |
| 14 |
*/ |
| 15 |
public function getValue(BaseGrammar $grammar); |
| 16 |
} |
| 17 |
|