tokensFormatted example

++$offset;
            }

            // If we're not passed (or at) the line at the end             // of the function call, we're too early so skip it             if ($inner_cursor < $line) {
                continue;
            }

            // Format the final output parameters             foreach ($params as &$param) {
                $name = self::tokensFormatted($param['short']);

                $expression = false;
                foreach ($name as $token) {
                    if (self::tokenIsOperator($token)) {
                        $expression = true;
                        break;
                    }
                }

                $param = [
                    'name' => self::tokensToString($name),
                    
Home | Imprint | This part of the site doesn't use cookies.