\Gettext\UtilsParsedFunction

Function parsed by PhpFunctionsScanner.

Summary

Methods
Properties
Constants
__construct()
stopArgument()
nextArgument()
addArgumentChunk()
addComment()
getLine()
close()
No public properties found
No constants found
No protected methods found
$name
$line
$arguments
$argumentIndex
$argumentStopped
$comments
N/A
No private methods found
No private properties found
N/A

Properties

$name

$name : string

The function name.

Type

string

$line

$line : integer

The line where the function starts.

Type

integer

$arguments

$arguments : array<mixed,string>

The strings extracted from the function arguments.

Type

array<mixed,string>

$argumentIndex

$argumentIndex : integer|null

The current index of the function (-1 if no arguments).

Type

integer|null

$argumentStopped

$argumentStopped : boolean

Shall we stop adding string chunks to the current argument?

Type

boolean

$comments

$comments : array<mixed,string>|null

Extracted comments.

Type

array<mixed,string>|null

Methods

__construct()

__construct(string  $name, integer  $line) 

Initializes the instance.

Parameters

string $name

The function name.

integer $line

The line where the function starts.

stopArgument()

stopArgument() 

Stop extracting strings from the current argument (because we found something that's not a string).

nextArgument()

nextArgument() 

Go to the next argument because we a comma was found.

addArgumentChunk()

addArgumentChunk(string|null  $chunk) 

Add a string to the current argument.

Parameters

string|null $chunk

addComment()

addComment(string  $comment) 

Add a comment associated to this function.

Parameters

string $comment

getLine()

getLine() : integer

Return the line the function starts.

Returns

integer —

Line number.

close()

close() : array

A closing parenthesis was found: return the final data.

The array returned has the following values: 0 => string The function name. 1 => int The line where the function starts. 2 => string[] the strings extracted from the function arguments. 3 => string[] the comments associated to the function.

Returns

array