| Conditions | 3 |
| Paths | 3 |
| Total Lines | 16 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| 1 | <?php |
||
| 113 | public function setAlias($alias) |
||
| 114 | { |
||
| 115 | if (0 == \strlen($alias)) { |
||
| 116 | $this->alias = null; |
||
| 117 | |||
| 118 | return $this; |
||
| 119 | } |
||
| 120 | |||
| 121 | if ($this->isAll()) { |
||
| 122 | throw new QueryException("Can't use alias because column name is ALL (*)"); |
||
| 123 | } |
||
| 124 | |||
| 125 | $this->alias = (string) $alias; |
||
| 126 | |||
| 127 | return $this; |
||
| 128 | } |
||
| 129 | |||
| 140 |