final class StringNode extends Node

internal  
 

Constants

private EscapeSequences

Methods

__construct(string $value, string $indentation = "\t")

No description

mixed
toValue()

Converts the node to its PHP value.

static string
parse(string $s, Position $position)

Parses a raw NEON string token (including its delimiters) and returns the decoded string value.

string
toString()

Converts the node back to its NEON representation.

Details

at line 23
__construct(string $value, string $indentation = "\t")

No description

Parameters

string $value
string $indentation

at line 30
mixed toValue()

Converts the node to its PHP value.

Return Value

mixed

at line 37
static string parse(string $s, Position $position)

Parses a raw NEON string token (including its delimiters) and returns the decoded string value.

Parameters

string $s
Position $position

Return Value

string

at line 71
string toString()

Converts the node back to its NEON representation.

Return Value

string