comparison vendor/symfony/css-selector/Node/AttributeNode.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 AttributeNode extends AbstractNode 24 class AttributeNode extends AbstractNode
25 { 25 {
26 /**
27 * @var NodeInterface
28 */
29 private $selector; 26 private $selector;
30
31 /**
32 * @var string
33 */
34 private $namespace; 27 private $namespace;
35
36 /**
37 * @var string
38 */
39 private $attribute; 28 private $attribute;
40
41 /**
42 * @var string
43 */
44 private $operator; 29 private $operator;
45
46 /**
47 * @var string
48 */
49 private $value; 30 private $value;
50 31
51 /** 32 /**
52 * @param NodeInterface $selector 33 * @param NodeInterface $selector
53 * @param string $namespace 34 * @param string $namespace