comparison vendor/symfony/css-selector/XPath/XPathExpr.php @ 16:c2387f117808

Routine composer update
author Chris Cannam
date Tue, 10 Jul 2018 15:07:59 +0100
parents 1fec387a4317
children
comparison
equal deleted inserted replaced
15:e200cb7efeb3 16:c2387f117808
51 { 51 {
52 return $this->element; 52 return $this->element;
53 } 53 }
54 54
55 /** 55 /**
56 * @param $condition
57 *
58 * @return $this 56 * @return $this
59 */ 57 */
60 public function addCondition($condition) 58 public function addCondition($condition)
61 { 59 {
62 $this->condition = $this->condition ? sprintf('(%s) and (%s)', $this->condition, $condition) : $condition; 60 $this->condition = $this->condition ? sprintf('(%s) and (%s)', $this->condition, $condition) : $condition;