Class LoggerFormattingInfo
This class encapsulates the information obtained when parsing formatting modifiers in conversion modifiers.
			public  
			integer
		 | 
		$min | 0 | 
		
			#
			 Minimal output length. If output is shorter than this value, it will be padded with spaces.  | 
	
			public  
			integer
		 | 
		$max | PHP_INT_MAX | 
		
			#
			 Maximum output length. If output is longer than this value, it will be trimmed.  | 
	
			public  
			boolean
		 | 
		$padLeft | true | 
		
			#
			 Whether to pad the string from the left. If set to false, the string will be padded from the right.  | 
	
			public  
			boolean
		 | 
		$trimLeft | false | 
		
			#
			 Whether to trim the string from the left. If set to false, the string will be trimmed from the right.  |