| Conditions | 3 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 75 | public function selector(string $sPath = '', $xContext = null): DomSelector |
||
| 76 | { |
||
| 77 | $xSelector = new DomSelector($sPath, $xContext); |
||
| 78 | if($this->bCommand && $this->response() !== null) |
||
| 79 | { |
||
| 80 | $this->addCommand('jquery', ['selector' => $xSelector]); |
||
| 81 | } |
||
| 82 | // Reset the command value. |
||
| 83 | $this->bCommand = true; |
||
| 84 | return $xSelector; |
||
| 85 | } |
||
| 87 |