comparison vendor/symfony/css-selector/Node/ElementNode.php @ 17:129ea1e6d783

Update, including to Drupal core 8.6.10
author Chris Cannam
date Thu, 28 Feb 2019 13:21:36 +0000
parents 1fec387a4317
children
comparison
equal deleted inserted replaced
16:c2387f117808 17:129ea1e6d783
35 $this->namespace = $namespace; 35 $this->namespace = $namespace;
36 $this->element = $element; 36 $this->element = $element;
37 } 37 }
38 38
39 /** 39 /**
40 * @return null|string 40 * @return string|null
41 */ 41 */
42 public function getNamespace() 42 public function getNamespace()
43 { 43 {
44 return $this->namespace; 44 return $this->namespace;
45 } 45 }
46 46
47 /** 47 /**
48 * @return null|string 48 * @return string|null
49 */ 49 */
50 public function getElement() 50 public function getElement()
51 { 51 {
52 return $this->element; 52 return $this->element;
53 } 53 }