You appear to be a bot. Output may be restricted
Description
Return the size of the token objectThe size is end-start + 1
Usage
$integer = oiksc_token_object::getSize();
Parameters
Returns
integer the function length in linesSource
File name: oik-shortcodes/classes/class-oiksc-token-object.phpLines:
1 to 6 of 6
function getSize() { $end = $this->getEndLine(); $start = $this->getStartLine(); $size = $end - $start + 1; return( $size ); }View on GitHub