Example #1
0
 /**
  * Test method for dump of exponential numerics
  *
  * @return void
  */
 public function testHashStringsResemblingExponentialNumericsShouldNotBeChangedToINF()
 {
     $value = "686e444";
     $this->assertSame($value, Inline::parse(Dumper::dumpInline($value)));
 }
Example #2
0
 /**
  * Gets the YAML representation of configuration stack
  *
  * @return string YAML
  */
 public function dump()
 {
     return Dumper::dump($this->get(), 1);
 }