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