comparison vendor/symfony/css-selector/Node/NegationNode.php @ 14:1fec387a4317

Update Drupal core to 8.5.2 via Composer
author Chris Cannam
date Mon, 23 Apr 2018 09:46:53 +0100
parents 4c8ae668cc8c
children
comparison
equal deleted inserted replaced
13:5fb285c0d0e3 14:1fec387a4317
21 * 21 *
22 * @internal 22 * @internal
23 */ 23 */
24 class NegationNode extends AbstractNode 24 class NegationNode extends AbstractNode
25 { 25 {
26 /**
27 * @var NodeInterface
28 */
29 private $selector; 26 private $selector;
30
31 /**
32 * @var NodeInterface
33 */
34 private $subSelector; 27 private $subSelector;
35 28
36 /**
37 * @param NodeInterface $selector
38 * @param NodeInterface $subSelector
39 */
40 public function __construct(NodeInterface $selector, NodeInterface $subSelector) 29 public function __construct(NodeInterface $selector, NodeInterface $subSelector)
41 { 30 {
42 $this->selector = $selector; 31 $this->selector = $selector;
43 $this->subSelector = $subSelector; 32 $this->subSelector = $subSelector;
44 } 33 }