Class ScalarNode
Dump node for scalar values.
        
    Namespace: Cake\Error\Debug
    
    
    
      
  
  
        Method Summary
- 
          __construct() publicConstructor 
- 
          getChildren() publicGet the child nodes of this node. 
- 
          getType() publicGet the type of value 
- 
          getValue() publicGet the value 
Method Detail
__construct() ¶ public
__construct(string $type, string|float|int|bool|null $value)Constructor
Parameters
- 
                string$type
- The type of scalar value. 
- 
                string|float|int|bool|null$value
- The wrapped value. 
getChildren() ¶ public
getChildren(): array<Cake\Error\Debug\NodeInterface>Get the child nodes of this node.
Returns
array<Cake\Error\Debug\NodeInterface>getValue() ¶ public
getValue(): string|float|int|bool|nullGet the value
Returns
string|float|int|bool|null