Ejemplo n.º 1
0
 private function assertFlatArrayMatchesDeepArray($flat, DotArray $dotArray)
 {
     foreach ($flat as $key => $value) {
         $this->assertSame($value, $dotArray->get($key));
     }
 }