Class Dumper
	
	
Dumper dumps PHP variables to YAML strings.
	 
	
		Methods summary
		
		
			| 
				 public 
				
				
				 | 
			#
			setIndentation( integer $num )
				
Sets the indentation. Parameters
						$numinteger- $num The amount of spaces to use for indentation of nested nodes | 
		
			| 
				 public 
				string
				
				 | 
			#
			dump( mixed $input, integer $inline = 0, integer $indent = 0, boolean $exceptionOnInvalidType = false, boolean $objectSupport = false )
				
Dumps a PHP value to YAML. 
				
Dumps a PHP value to YAML. Parameters
						$inputmixed- $input The PHP value$inlineinteger- $inline The level where you switch to inline YAML$indentinteger- $indent The level of indentation (used internally)$exceptionOnInvalidTypeboolean- $exceptionOnInvalidType true if an exception must be thrown on invalid types (a
PHP resource or object), false otherwise$objectSupportboolean- $objectSupport true if object support is enabled, false otherwiseReturns
						string- The YAML representation of the PHP value
 | 
		
		Magic methods summary
		Properties summary
		
		
			| 
				protected  
				integer
			 | $indentation | 
				#
				
					
The amount of spaces to use for indentation of nested nodes. 
					
The amount of spaces to use for indentation of nested nodes. |