comparison vendor/symfony/css-selector/XPath/Extension/AbstractExtension.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
26 /** 26 /**
27 * {@inheritdoc} 27 * {@inheritdoc}
28 */ 28 */
29 public function getNodeTranslators() 29 public function getNodeTranslators()
30 { 30 {
31 return array(); 31 return [];
32 } 32 }
33 33
34 /** 34 /**
35 * {@inheritdoc} 35 * {@inheritdoc}
36 */ 36 */
37 public function getCombinationTranslators() 37 public function getCombinationTranslators()
38 { 38 {
39 return array(); 39 return [];
40 } 40 }
41 41
42 /** 42 /**
43 * {@inheritdoc} 43 * {@inheritdoc}
44 */ 44 */
45 public function getFunctionTranslators() 45 public function getFunctionTranslators()
46 { 46 {
47 return array(); 47 return [];
48 } 48 }
49 49
50 /** 50 /**
51 * {@inheritdoc} 51 * {@inheritdoc}
52 */ 52 */
53 public function getPseudoClassTranslators() 53 public function getPseudoClassTranslators()
54 { 54 {
55 return array(); 55 return [];
56 } 56 }
57 57
58 /** 58 /**
59 * {@inheritdoc} 59 * {@inheritdoc}
60 */ 60 */
61 public function getAttributeMatchingTranslators() 61 public function getAttributeMatchingTranslators()
62 { 62 {
63 return array(); 63 return [];
64 } 64 }
65 } 65 }