getRawData() публичный Метод

Syntax for paths is very simple. It's a group of array indices joined with a slash. It tries to emulate XPath query syntax to some extent. Examples: plurals/pluralRules dates/calendars/calendar[@type="gregorian"] Please see the documentation for CldrParser for details about parsed data structure.
См. также: CldrParser
public getRawData ( string $path ) : mixed
$path string A path to the node to get
Результат mixed Array or string of matching data, or FALSE on failure
 /**
  * @test
  */
 public function mergesMultipleFilesAndResolvesAliasesCorrectly()
 {
     $sampleParsedFilesMerged = (require __DIR__ . '/../Fixtures/MockParsedCldrFilesMerged.php');
     $this->assertEquals($sampleParsedFilesMerged, $this->model->getRawData('/'));
 }