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

Update, including to Drupal core 8.6.10
author Chris Cannam
date Thu, 28 Feb 2019 13:21:36 +0000
parents 4c8ae668cc8c
children
comparison
equal deleted inserted replaced
16:c2387f117808 17:129ea1e6d783
32 * @return string 32 * @return string
33 */ 33 */
34 public function getNodeName() 34 public function getNodeName()
35 { 35 {
36 if (null === $this->nodeName) { 36 if (null === $this->nodeName) {
37 $this->nodeName = preg_replace('~.*\\\\([^\\\\]+)Node$~', '$1', get_called_class()); 37 $this->nodeName = preg_replace('~.*\\\\([^\\\\]+)Node$~', '$1', \get_called_class());
38 } 38 }
39 39
40 return $this->nodeName; 40 return $this->nodeName;
41 } 41 }
42 } 42 }