http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/BuilderFactory.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/BuilderFactory.php b/vendor/nikic/php-parser/lib/PHPParser/BuilderFactory.php deleted file mode 100644 index 48941dc..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/BuilderFactory.php +++ /dev/null @@ -1,87 +0,0 @@ -<?php - -/** - * "class", "interface" and "function" are reserved keywords, so the methods are defined as _class(), - * _interface() and _function() in the class and are made available as class(), interface() and function() - * through __call() magic. - * - * @method PHPParser_Builder_Class class(string $name) Creates a class builder. - * @method PHPParser_Builder_Function function(string $name) Creates a function builder - * @method PHPParser_Builder_Interface interface(string $name) Creates an interface builder. - */ -class PHPParser_BuilderFactory -{ - /** - * Creates a class builder. - * - * @param string $name Name of the class - * - * @return PHPParser_Builder_Class The created class builder - */ - protected function _class($name) { - return new PHPParser_Builder_Class($name); - } - - /** - * Creates a interface builder. - * - * @param string $name Name of the interface - * - * @return PHPParser_Builder_Class The created interface builder - */ - protected function _interface($name) { - return new PHPParser_Builder_Interface($name); - } - - /** - * Creates a method builder. - * - * @param string $name Name of the method - * - * @return PHPParser_Builder_Method The created method builder - */ - public function method($name) { - return new PHPParser_Builder_Method($name); - } - - /** - * Creates a parameter builder. - * - * @param string $name Name of the parameter - * - * @return PHPParser_Builder_Param The created parameter builder - */ - public function param($name) { - return new PHPParser_Builder_Param($name); - } - - /** - * Creates a property builder. - * - * @param string $name Name of the property - * - * @return PHPParser_Builder_Property The created property builder - */ - public function property($name) { - return new PHPParser_Builder_Property($name); - } - - /** - * Creates a function builder. - * - * @param string $name Name of the function - * - * @return PHPParser_Builder_Property The created function builder - */ - protected function _function($name) { - return new PHPParser_Builder_Function($name); - } - - public function __call($name, array $args) { - if (method_exists($this, '_' . $name)) { - return call_user_func_array(array($this, '_' . $name), $args); - } - - throw new LogicException(sprintf('Method "%s" does not exist', $name)); - } -} \ No newline at end of file
http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Comment.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Comment.php b/vendor/nikic/php-parser/lib/PHPParser/Comment.php deleted file mode 100644 index feae399..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Comment.php +++ /dev/null @@ -1,117 +0,0 @@ -<?php - -class PHPParser_Comment -{ - protected $text; - protected $line; - - /** - * Constructs a comment node. - * - * @param string $text Comment text (including comment delimiters like /*) - * @param int $line Line number the comment started on - */ - public function __construct($text, $line = -1) { - $this->text = $text; - $this->line = $line; - } - - /** - * Gets the comment text. - * - * @return string The comment text (including comment delimiters like /*) - */ - public function getText() { - return $this->text; - } - - /** - * Sets the comment text. - * - * @param string $text The comment text (including comment delimiters like /*) - */ - public function setText($text) { - $this->text = $text; - } - - /** - * Gets the line number the comment started on. - * - * @return int Line number - */ - public function getLine() { - return $this->line; - } - - /** - * Sets the line number the comment started on. - * - * @param int $line Line number - */ - public function setLine($line) { - $this->line = $line; - } - - /** - * Gets the comment text. - * - * @return string The comment text (including comment delimiters like /*) - */ - public function __toString() { - return $this->text; - } - - /** - * Gets the reformatted comment text. - * - * "Reformatted" here means that we try to clean up the whitespace at the - * starts of the lines. This is necessary because we receive the comments - * without trailing whitespace on the first line, but with trailing whitespace - * on all subsequent lines. - * - * @return mixed|string - */ - public function getReformattedText() { - $text = trim($this->text); - if (false === strpos($text, "\n")) { - // Single line comments don't need further processing - return $text; - } elseif (preg_match('((*BSR_ANYCRLF)(*ANYCRLF)^.*(?:\R\s+\*.*)+$)', $text)) { - // Multi line comment of the type - // - // /* - // * Some text. - // * Some more text. - // */ - // - // is handled by replacing the whitespace sequences before the * by a single space - return preg_replace('(^\s+\*)m', ' *', $this->text); - } elseif (preg_match('(^/\*\*?\s*[\r\n])', $text) && preg_match('(\n(\s*)\*/$)', $text, $matches)) { - // Multi line comment of the type - // - // /* - // Some text. - // Some more text. - // */ - // - // is handled by removing the whitespace sequence on the line before the closing - // */ on all lines. So if the last line is " */", then " " is removed at the - // start of all lines. - return preg_replace('(^' . preg_quote($matches[1]) . ')m', '', $text); - } elseif (preg_match('(^/\*\*?\s*(?!\s))', $text, $matches)) { - // Multi line comment of the type - // - // /* Some text. - // Some more text. - // Even more text. */ - // - // is handled by taking the length of the "/* " segment and leaving only that - // many space characters before the lines. Thus in the above example only three - // space characters are left at the start of every line. - return preg_replace('(^\s*(?= {' . strlen($matches[0]) . '}(?!\s)))m', '', $text); - } - - // No idea how to format this comment, so simply return as is - return $text; - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Comment/Doc.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Comment/Doc.php b/vendor/nikic/php-parser/lib/PHPParser/Comment/Doc.php deleted file mode 100644 index 95e4bc9..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Comment/Doc.php +++ /dev/null @@ -1,5 +0,0 @@ -<?php - -class PHPParser_Comment_Doc extends PHPParser_Comment -{ -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Error.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Error.php b/vendor/nikic/php-parser/lib/PHPParser/Error.php deleted file mode 100644 index ba248f8..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Error.php +++ /dev/null @@ -1,70 +0,0 @@ -<?php - -class PHPParser_Error extends RuntimeException -{ - protected $rawMessage; - protected $rawLine; - - /** - * Creates an Exception signifying a parse error. - * - * @param string $message Error message - * @param int $line Error line in PHP file - */ - public function __construct($message, $line = -1) { - $this->rawMessage = (string) $message; - $this->rawLine = (int) $line; - $this->updateMessage(); - } - - /** - * Gets the error message - * - * @return string Error message - */ - public function getRawMessage() { - return $this->rawMessage; - } - - /** - * Sets the line of the PHP file the error occurred in. - * - * @param string $message Error message - */ - public function setRawMessage($message) { - $this->rawMessage = (string) $message; - $this->updateMessage(); - } - - /** - * Gets the error line in the PHP file. - * - * @return int Error line in the PHP file - */ - public function getRawLine() { - return $this->rawLine; - } - - /** - * Sets the line of the PHP file the error occurred in. - * - * @param int $line Error line in the PHP file - */ - public function setRawLine($line) { - $this->rawLine = (int) $line; - $this->updateMessage(); - } - - /** - * Updates the exception message after a change to rawMessage or rawLine. - */ - protected function updateMessage() { - $this->message = $this->rawMessage; - - if (-1 === $this->rawLine) { - $this->message .= ' on unknown line'; - } else { - $this->message .= ' on line ' . $this->rawLine; - } - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Lexer.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Lexer.php b/vendor/nikic/php-parser/lib/PHPParser/Lexer.php deleted file mode 100644 index 51ab31c..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Lexer.php +++ /dev/null @@ -1,199 +0,0 @@ -<?php - -class PHPParser_Lexer -{ - protected $code; - protected $tokens; - protected $pos; - protected $line; - - protected $tokenMap; - protected $dropTokens; - - /** - * Creates a Lexer. - */ - public function __construct() { - // map from internal tokens to PHPParser tokens - $this->tokenMap = $this->createTokenMap(); - - // map of tokens to drop while lexing (the map is only used for isset lookup, - // that's why the value is simply set to 1; the value is never actually used.) - $this->dropTokens = array_fill_keys(array(T_WHITESPACE, T_OPEN_TAG), 1); - } - - /** - * Initializes the lexer for lexing the provided source code. - * - * @param string $code The source code to lex - * - * @throws PHPParser_Error on lexing errors (unterminated comment or unexpected character) - */ - public function startLexing($code) { - $scream = ini_set('xdebug.scream', 0); - - $this->resetErrors(); - $this->tokens = @token_get_all($code); - $this->handleErrors(); - - ini_set('xdebug.scream', $scream); - - $this->code = $code; // keep the code around for __halt_compiler() handling - $this->pos = -1; - $this->line = 1; - } - - protected function resetErrors() { - // set error_get_last() to defined state by forcing an undefined variable error - set_error_handler(array($this, 'dummyErrorHandler'), 0); - @$undefinedVariable; - restore_error_handler(); - } - - private function dummyErrorHandler() { return false; } - - protected function handleErrors() { - $error = error_get_last(); - - if (preg_match( - '~^Unterminated comment starting line ([0-9]+)$~', - $error['message'], $matches - )) { - throw new PHPParser_Error('Unterminated comment', $matches[1]); - } - - if (preg_match( - '~^Unexpected character in input: \'(.)\' \(ASCII=([0-9]+)\)~s', - $error['message'], $matches - )) { - throw new PHPParser_Error(sprintf( - 'Unexpected character "%s" (ASCII %d)', - $matches[1], $matches[2] - )); - } - - // PHP cuts error message after null byte, so need special case - if (preg_match('~^Unexpected character in input: \'$~', $error['message'])) { - throw new PHPParser_Error('Unexpected null byte'); - } - } - - /** - * Fetches the next token. - * - * @param mixed $value Variable to store token content in - * @param mixed $startAttributes Variable to store start attributes in - * @param mixed $endAttributes Variable to store end attributes in - * - * @return int Token id - */ - public function getNextToken(&$value = null, &$startAttributes = null, &$endAttributes = null) { - $startAttributes = array(); - $endAttributes = array(); - - while (isset($this->tokens[++$this->pos])) { - $token = $this->tokens[$this->pos]; - - if (is_string($token)) { - $startAttributes['startLine'] = $this->line; - $endAttributes['endLine'] = $this->line; - - // bug in token_get_all - if ('b"' === $token) { - $value = 'b"'; - return ord('"'); - } else { - $value = $token; - return ord($token); - } - } else { - $this->line += substr_count($token[1], "\n"); - - if (T_COMMENT === $token[0]) { - $startAttributes['comments'][] = new PHPParser_Comment($token[1], $token[2]); - } elseif (T_DOC_COMMENT === $token[0]) { - $startAttributes['comments'][] = new PHPParser_Comment_Doc($token[1], $token[2]); - } elseif (!isset($this->dropTokens[$token[0]])) { - $value = $token[1]; - $startAttributes['startLine'] = $token[2]; - $endAttributes['endLine'] = $this->line; - - return $this->tokenMap[$token[0]]; - } - } - } - - $startAttributes['startLine'] = $this->line; - - // 0 is the EOF token - return 0; - } - - /** - * Handles __halt_compiler() by returning the text after it. - * - * @return string Remaining text - */ - public function handleHaltCompiler() { - // get the length of the text before the T_HALT_COMPILER token - $textBefore = ''; - for ($i = 0; $i <= $this->pos; ++$i) { - if (is_string($this->tokens[$i])) { - $textBefore .= $this->tokens[$i]; - } else { - $textBefore .= $this->tokens[$i][1]; - } - } - - // text after T_HALT_COMPILER, still including (); - $textAfter = substr($this->code, strlen($textBefore)); - - // ensure that it is followed by (); - // this simplifies the situation, by not allowing any comments - // in between of the tokens. - if (!preg_match('~\s*\(\s*\)\s*(?:;|\?>\r?\n?)~', $textAfter, $matches)) { - throw new PHPParser_Error('__HALT_COMPILER must be followed by "();"'); - } - - // prevent the lexer from returning any further tokens - $this->pos = count($this->tokens); - - // return with (); removed - return (string) substr($textAfter, strlen($matches[0])); // (string) converts false to '' - } - - /** - * Creates the token map. - * - * The token map maps the PHP internal token identifiers - * to the identifiers used by the Parser. Additionally it - * maps T_OPEN_TAG_WITH_ECHO to T_ECHO and T_CLOSE_TAG to ';'. - * - * @return array The token map - */ - protected function createTokenMap() { - $tokenMap = array(); - - // 256 is the minimum possible token number, as everything below - // it is an ASCII value - for ($i = 256; $i < 1000; ++$i) { - // T_DOUBLE_COLON is equivalent to T_PAAMAYIM_NEKUDOTAYIM - if (T_DOUBLE_COLON === $i) { - $tokenMap[$i] = PHPParser_Parser::T_PAAMAYIM_NEKUDOTAYIM; - // T_OPEN_TAG_WITH_ECHO with dropped T_OPEN_TAG results in T_ECHO - } elseif(T_OPEN_TAG_WITH_ECHO === $i) { - $tokenMap[$i] = PHPParser_Parser::T_ECHO; - // T_CLOSE_TAG is equivalent to ';' - } elseif(T_CLOSE_TAG === $i) { - $tokenMap[$i] = ord(';'); - // and the others can be mapped directly - } elseif ('UNKNOWN' !== ($name = token_name($i)) - && defined($name = 'PHPParser_Parser::' . $name) - ) { - $tokenMap[$i] = constant($name); - } - } - - return $tokenMap; - } -} http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Lexer/Emulative.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Lexer/Emulative.php b/vendor/nikic/php-parser/lib/PHPParser/Lexer/Emulative.php deleted file mode 100644 index 1c74ef0..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Lexer/Emulative.php +++ /dev/null @@ -1,200 +0,0 @@ -<?php - -/** - * ATTENTION: This code is WRITE-ONLY. Do not try to read it. - */ -class PHPParser_Lexer_Emulative extends PHPParser_Lexer -{ - protected $newKeywords; - protected $inObjectAccess; - - public function __construct() { - parent::__construct(); - - $newKeywordsPerVersion = array( - '5.5.0-dev' => array( - 'finally' => PHPParser_Parser::T_FINALLY, - 'yield' => PHPParser_Parser::T_YIELD, - ), - '5.4.0-dev' => array( - 'callable' => PHPParser_Parser::T_CALLABLE, - 'insteadof' => PHPParser_Parser::T_INSTEADOF, - 'trait' => PHPParser_Parser::T_TRAIT, - '__trait__' => PHPParser_Parser::T_TRAIT_C, - ), - '5.3.0-dev' => array( - '__dir__' => PHPParser_Parser::T_DIR, - 'goto' => PHPParser_Parser::T_GOTO, - 'namespace' => PHPParser_Parser::T_NAMESPACE, - '__namespace__' => PHPParser_Parser::T_NS_C, - ), - ); - - $this->newKeywords = array(); - foreach ($newKeywordsPerVersion as $version => $newKeywords) { - if (version_compare(PHP_VERSION, $version, '>=')) { - break; - } - - $this->newKeywords += $newKeywords; - } - } - - public function startLexing($code) { - $this->inObjectAccess = false; - - // on PHP 5.4 don't do anything - if (version_compare(PHP_VERSION, '5.4.0RC1', '>=')) { - parent::startLexing($code); - } else { - $code = $this->preprocessCode($code); - parent::startLexing($code); - $this->postprocessTokens(); - } - } - - /* - * Replaces new features in the code by ~__EMU__{NAME}__{DATA}__~ sequences. - * ~LABEL~ is never valid PHP code, that's why we can (to some degree) safely - * use it here. - * Later when preprocessing the tokens these sequences will either be replaced - * by real tokens or replaced with their original content (e.g. if they occured - * inside a string, i.e. a place where they don't have a special meaning). - */ - protected function preprocessCode($code) { - // binary notation (0b010101101001...) - $code = preg_replace('(\b0b[01]+\b)', '~__EMU__BINARY__$0__~', $code); - - if (version_compare(PHP_VERSION, '5.3.0', '<')) { - // namespace separator (backslash not followed by some special characters, - // which are not valid after a NS separator, but would cause problems with - // escape sequence parsing if one would replace the backslash there) - $code = preg_replace('(\\\\(?!["\'`${\\\\]))', '~__EMU__NS__~', $code); - - // nowdoc (<<<'ABC'\ncontent\nABC;) - $code = preg_replace_callback( - '((*BSR_ANYCRLF) # set \R to (?>\r\n|\r|\n) - (b?<<<[\t ]*\'([a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*)\'\R) # opening token - ((?:(?!\2;?\R).*\R)*) # content - (\2) # closing token - (?=;?\R) # must be followed by newline (with optional semicolon) - )x', - array($this, 'encodeNowdocCallback'), - $code - ); - } - - return $code; - } - - /* - * As nowdocs can have arbitrary content but LABELs can only contain a certain - * range of characters, the nowdoc content is encoded as hex and separated by - * 'x' tokens. So the result of the encoding will look like this: - * ~__EMU__NOWDOC__{HEX(START_TOKEN)}x{HEX(CONTENT)}x{HEX(END_TOKEN)}~ - */ - public function encodeNowdocCallback(array $matches) { - return '~__EMU__NOWDOC__' - . bin2hex($matches[1]) . 'x' . bin2hex($matches[3]) . 'x' . bin2hex($matches[4]) - . '__~'; - } - - /* - * Replaces the ~__EMU__...~ sequences with real tokens or their original - * value. - */ - protected function postprocessTokens() { - // we need to manually iterate and manage a count because we'll change - // the tokens array on the way - for ($i = 0, $c = count($this->tokens); $i < $c; ++$i) { - // first check that the following tokens are form ~LABEL~, - // then match the __EMU__... sequence. - if ('~' === $this->tokens[$i] - && isset($this->tokens[$i + 2]) - && '~' === $this->tokens[$i + 2] - && T_STRING === $this->tokens[$i + 1][0] - && preg_match('(^__EMU__([A-Z]++)__(?:([A-Za-z0-9]++)__)?$)', $this->tokens[$i + 1][1], $matches) - ) { - if ('BINARY' === $matches[1]) { - // the binary number can either be an integer or a double, so return a LNUMBER - // or DNUMBER respectively - $replace = array( - array(is_int(bindec($matches[2])) ? T_LNUMBER : T_DNUMBER, $matches[2], $this->tokens[$i + 1][2]) - ); - } elseif ('NS' === $matches[1]) { - // a \ single char token is returned here and replaced by a - // PHPParser_Parser::T_NS_SEPARATOR token in ->getNextToken(). This hacks around - // the limitations arising from T_NS_SEPARATOR not being defined on 5.3 - $replace = array('\\'); - } elseif ('NOWDOC' === $matches[1]) { - // decode the encoded nowdoc payload; pack('H*' is bin2hex( for 5.3 - list($start, $content, $end) = explode('x', $matches[2]); - list($start, $content, $end) = array(pack('H*', $start), pack('H*', $content), pack('H*', $end)); - - $replace = array(); - $replace[] = array(T_START_HEREDOC, $start, $this->tokens[$i + 1][2]); - if ('' !== $content) { - $replace[] = array(T_ENCAPSED_AND_WHITESPACE, $content, -1); - } - $replace[] = array(T_END_HEREDOC, $end, -1); - } else { - // just ignore all other __EMU__ sequences - continue; - } - - array_splice($this->tokens, $i, 3, $replace); - $c -= 3 - count($replace); - // for multichar tokens (e.g. strings) replace any ~__EMU__...~ sequences - // in their content with the original character sequence - } elseif (is_array($this->tokens[$i]) - && 0 !== strpos($this->tokens[$i][1], '__EMU__') - ) { - $this->tokens[$i][1] = preg_replace_callback( - '(~__EMU__([A-Z]++)__(?:([A-Za-z0-9]++)__)?~)', - array($this, 'restoreContentCallback'), - $this->tokens[$i][1] - ); - } - } - } - - /* - * This method is a callback for restoring EMU sequences in - * multichar tokens (like strings) to their original value. - */ - public function restoreContentCallback(array $matches) { - if ('BINARY' === $matches[1]) { - return $matches[2]; - } elseif ('NS' === $matches[1]) { - return '\\'; - } elseif ('NOWDOC' === $matches[1]) { - list($start, $content, $end) = explode('x', $matches[2]); - return pack('H*', $start) . pack('H*', $content) . pack('H*', $end); - } else { - return $matches[0]; - } - } - - public function getNextToken(&$value = null, &$startAttributes = null, &$endAttributes = null) { - $token = parent::getNextToken($value, $startAttributes, $endAttributes); - - // replace new keywords by their respective tokens. This is not done - // if we currently are in an object access (e.g. in $obj->namespace - // "namespace" stays a T_STRING tokens and isn't converted to T_NAMESPACE) - if (PHPParser_Parser::T_STRING === $token && !$this->inObjectAccess) { - if (isset($this->newKeywords[strtolower($value)])) { - return $this->newKeywords[strtolower($value)]; - } - // backslashes are replaced by T_NS_SEPARATOR tokens - } elseif (92 === $token) { // ord('\\') - return PHPParser_Parser::T_NS_SEPARATOR; - // keep track of whether we currently are in an object access (after ->) - } elseif (PHPParser_Parser::T_OBJECT_OPERATOR === $token) { - $this->inObjectAccess = true; - } else { - $this->inObjectAccess = false; - } - - return $token; - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node.php b/vendor/nikic/php-parser/lib/PHPParser/Node.php deleted file mode 100644 index c47d49d..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node.php +++ /dev/null @@ -1,75 +0,0 @@ -<?php - -interface PHPParser_Node -{ - /** - * Gets the type of the node. - * - * @return string Type of the node - */ - public function getType(); - - /** - * Gets the names of the sub nodes. - * - * @return array Names of sub nodes - */ - public function getSubNodeNames(); - - /** - * Gets line the node started in. - * - * @return int Line - */ - public function getLine(); - - /** - * Sets line the node started in. - * - * @param int $line Line - */ - public function setLine($line); - - /** - * Gets the doc comment of the node. - * - * The doc comment has to be the last comment associated with the node. - * - * @return null|PHPParser_Comment_Doc Doc comment object or null - */ - public function getDocComment(); - - /** - * Sets an attribute on a node. - * - * @param string $key - * @param mixed $value - */ - public function setAttribute($key, $value); - - /** - * Returns whether an attribute exists. - * - * @param string $key - * - * @return bool - */ - public function hasAttribute($key); - - /** - * Returns the value of an attribute. - * - * @param string $key - * @param mixed $default - * - * @return mixed - */ - public function &getAttribute($key, $default = null); - - /** - * Returns all attributes for the given node. - * - * @return array - */ - public function getAttributes(); -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Arg.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Arg.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Arg.php deleted file mode 100644 index 5893e25..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Arg.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Expr $value Value to pass - * @property bool $byRef Whether to pass by ref - */ -class PHPParser_Node_Arg extends PHPParser_NodeAbstract -{ - /** - * Constructs a function call argument node. - * - * @param PHPParser_Node_Expr $value Value to pass - * @param bool $byRef Whether to pass by ref - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Expr $value, $byRef = false, array $attributes = array()) { - parent::__construct( - array( - 'value' => $value, - 'byRef' => $byRef - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Const.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Const.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Const.php deleted file mode 100644 index e4e7794..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Const.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -/** - * @property string $name Name - * @property PHPParser_Node_Expr $value Value - */ -class PHPParser_Node_Const extends PHPParser_NodeAbstract -{ - /** - * Constructs a const node for use in class const and const statements. - * - * @param string $name Name - * @param PHPParser_Node_Expr $value Value - * @param array $attributes Additional attributes - */ - public function __construct($name, PHPParser_Node_Expr $value, array $attributes = array()) { - parent::__construct( - array( - 'name' => $name, - 'value' => $value, - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr.php deleted file mode 100644 index 293dab3..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr.php +++ /dev/null @@ -1,5 +0,0 @@ -<?php - -abstract class PHPParser_Node_Expr extends PHPParser_NodeAbstract -{ -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Array.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Array.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Array.php deleted file mode 100644 index a27d42e..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Array.php +++ /dev/null @@ -1,22 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Expr_ArrayItem[] $items Items - */ -class PHPParser_Node_Expr_Array extends PHPParser_Node_Expr -{ - /** - * Constructs an array node. - * - * @param PHPParser_Node_Expr_ArrayItem[] $items Items of the array - * @param array $attributes Additional attributes - */ - public function __construct(array $items = array(), array $attributes = array()) { - parent::__construct( - array( - 'items' => $items - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/ArrayDimFetch.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/ArrayDimFetch.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/ArrayDimFetch.php deleted file mode 100644 index f7d8628..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/ArrayDimFetch.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Expr $var Variable - * @property null|PHPParser_Node_Expr $dim Array index / dim - */ -class PHPParser_Node_Expr_ArrayDimFetch extends PHPParser_Node_Expr -{ - /** - * Constructs an array index fetch node. - * - * @param PHPParser_Node_Expr $var Variable - * @param null|PHPParser_Node_Expr $dim Array index / dim - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Expr $var, PHPParser_Node_Expr $dim = null, array $attributes = array()) { - parent::__construct( - array( - 'var' => $var, - 'dim' => $dim - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/ArrayItem.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/ArrayItem.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/ArrayItem.php deleted file mode 100644 index f3c42ba..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/ArrayItem.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Expr $value Value - * @property null|PHPParser_Node_Expr $key Key - * @property bool $byRef Whether to assign by reference - */ -class PHPParser_Node_Expr_ArrayItem extends PHPParser_Node_Expr -{ - /** - * Constructs an array item node. - * - * @param PHPParser_Node_Expr $value Value - * @param null|PHPParser_Node_Expr $key Key - * @param bool $byRef Whether to assign by reference - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Expr $value, PHPParser_Node_Expr $key = null, $byRef = false, array $attributes = array()) { - parent::__construct( - array( - 'key' => $key, - 'value' => $value, - 'byRef' => $byRef - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Assign.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Assign.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Assign.php deleted file mode 100644 index 1619425..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Assign.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Expr $var Variable - * @property PHPParser_Node_Expr $expr Expression - */ -class PHPParser_Node_Expr_Assign extends PHPParser_Node_Expr -{ - /** - * Constructs an assignment node. - * - * @param PHPParser_Node_Expr $var Variable - * @param PHPParser_Node_Expr $expr Expression - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Expr $var, PHPParser_Node_Expr $expr, array $attributes = array()) { - parent::__construct( - array( - 'var' => $var, - 'expr' => $expr - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignBitwiseAnd.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignBitwiseAnd.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignBitwiseAnd.php deleted file mode 100644 index 013f1a8..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignBitwiseAnd.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Expr $var Variable - * @property PHPParser_Node_Expr $expr Expression - */ -class PHPParser_Node_Expr_AssignBitwiseAnd extends PHPParser_Node_Expr -{ - /** - * Constructs an assignment with bitwise and node. - * - * @param PHPParser_Node_Expr $var Variable - * @param PHPParser_Node_Expr $expr Expression - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Expr $var, PHPParser_Node_Expr $expr, array $attributes = array()) { - parent::__construct( - array( - 'var' => $var, - 'expr' => $expr - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignBitwiseOr.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignBitwiseOr.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignBitwiseOr.php deleted file mode 100644 index c5c4764..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignBitwiseOr.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Expr $var Variable - * @property PHPParser_Node_Expr $expr Expression - */ -class PHPParser_Node_Expr_AssignBitwiseOr extends PHPParser_Node_Expr -{ - /** - * Constructs an assignment with bitwise or node. - * - * @param PHPParser_Node_Expr $var Variable - * @param PHPParser_Node_Expr $expr Expression - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Expr $var, PHPParser_Node_Expr $expr, array $attributes = array()) { - parent::__construct( - array( - 'var' => $var, - 'expr' => $expr - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignBitwiseXor.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignBitwiseXor.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignBitwiseXor.php deleted file mode 100644 index 91ed068..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignBitwiseXor.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Expr $var Variable - * @property PHPParser_Node_Expr $expr Expression - */ -class PHPParser_Node_Expr_AssignBitwiseXor extends PHPParser_Node_Expr -{ - /** - * Constructs an assignment with bitwise xor node. - * - * @param PHPParser_Node_Expr $var Variable - * @param PHPParser_Node_Expr $expr Expression - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Expr $var, PHPParser_Node_Expr $expr, array $attributes = array()) { - parent::__construct( - array( - 'var' => $var, - 'expr' => $expr - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignConcat.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignConcat.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignConcat.php deleted file mode 100644 index 3f634ae..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignConcat.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Expr $var Variable - * @property PHPParser_Node_Expr $expr Expression - */ -class PHPParser_Node_Expr_AssignConcat extends PHPParser_Node_Expr -{ - /** - * Constructs an assignment with concat node. - * - * @param PHPParser_Node_Expr $var Variable - * @param PHPParser_Node_Expr $expr Expression - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Expr $var, PHPParser_Node_Expr $expr, array $attributes = array()) { - parent::__construct( - array( - 'var' => $var, - 'expr' => $expr - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignDiv.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignDiv.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignDiv.php deleted file mode 100644 index 7992a66..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignDiv.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Expr $var Variable - * @property PHPParser_Node_Expr $expr Expression - */ -class PHPParser_Node_Expr_AssignDiv extends PHPParser_Node_Expr -{ - /** - * Constructs an assignment with division node. - * - * @param PHPParser_Node_Expr $var Variable - * @param PHPParser_Node_Expr $expr Expression - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Expr $var, PHPParser_Node_Expr $expr, array $attributes = array()) { - parent::__construct( - array( - 'var' => $var, - 'expr' => $expr - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignMinus.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignMinus.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignMinus.php deleted file mode 100644 index 62f00b3..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignMinus.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Expr $var Variable - * @property PHPParser_Node_Expr $expr Expression - */ -class PHPParser_Node_Expr_AssignMinus extends PHPParser_Node_Expr -{ - /** - * Constructs an assignment with minus node. - * - * @param PHPParser_Node_Expr $var Variable - * @param PHPParser_Node_Expr $expr Expression - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Expr $var, PHPParser_Node_Expr $expr, array $attributes = array()) { - parent::__construct( - array( - 'var' => $var, - 'expr' => $expr - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignMod.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignMod.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignMod.php deleted file mode 100644 index 98cbe75..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignMod.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Expr $var Variable - * @property PHPParser_Node_Expr $expr Expression - */ -class PHPParser_Node_Expr_AssignMod extends PHPParser_Node_Expr -{ - /** - * Constructs an assignment with modulo node. - * - * @param PHPParser_Node_Expr $var Variable - * @param PHPParser_Node_Expr $expr Expression - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Expr $var, PHPParser_Node_Expr $expr, array $attributes = array()) { - parent::__construct( - array( - 'var' => $var, - 'expr' => $expr - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignMul.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignMul.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignMul.php deleted file mode 100644 index 63bdae7..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignMul.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Expr $var Variable - * @property PHPParser_Node_Expr $expr Expression - */ -class PHPParser_Node_Expr_AssignMul extends PHPParser_Node_Expr -{ - /** - * Constructs an assignment with multiplication node. - * - * @param PHPParser_Node_Expr $var Variable - * @param PHPParser_Node_Expr $expr Expression - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Expr $var, PHPParser_Node_Expr $expr, array $attributes = array()) { - parent::__construct( - array( - 'var' => $var, - 'expr' => $expr - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignPlus.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignPlus.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignPlus.php deleted file mode 100644 index 99b866c..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignPlus.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Expr $var Variable - * @property PHPParser_Node_Expr $expr Expression - */ -class PHPParser_Node_Expr_AssignPlus extends PHPParser_Node_Expr -{ - /** - * Constructs an assignment with addition node. - * - * @param PHPParser_Node_Expr $var Variable - * @param PHPParser_Node_Expr $expr Expression - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Expr $var, PHPParser_Node_Expr $expr, array $attributes = array()) { - parent::__construct( - array( - 'var' => $var, - 'expr' => $expr - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignRef.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignRef.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignRef.php deleted file mode 100644 index 0bcf0b0..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignRef.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Expr $var Variable reference is assigned to - * @property PHPParser_Node_Expr $expr Variable which is referenced - */ -class PHPParser_Node_Expr_AssignRef extends PHPParser_Node_Expr -{ - /** - * Constructs an assignment node. - * - * @param PHPParser_Node_Expr $var Variable - * @param PHPParser_Node_Expr $expr Expression - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Expr $var, PHPParser_Node_Expr $expr, array $attributes = array()) { - parent::__construct( - array( - 'var' => $var, - 'expr' => $expr - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignShiftLeft.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignShiftLeft.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignShiftLeft.php deleted file mode 100644 index f3ec3e5..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignShiftLeft.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Expr $var Variable - * @property PHPParser_Node_Expr $expr Expression - */ -class PHPParser_Node_Expr_AssignShiftLeft extends PHPParser_Node_Expr -{ - /** - * Constructs an assignment with left shift node. - * - * @param PHPParser_Node_Expr $var Variable - * @param PHPParser_Node_Expr $expr Expression - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Expr $var, PHPParser_Node_Expr $expr, array $attributes = array()) { - parent::__construct( - array( - 'var' => $var, - 'expr' => $expr - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignShiftRight.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignShiftRight.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignShiftRight.php deleted file mode 100644 index 0b4743b..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignShiftRight.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Expr $var Variable - * @property PHPParser_Node_Expr $expr Expression - */ -class PHPParser_Node_Expr_AssignShiftRight extends PHPParser_Node_Expr -{ - /** - * Constructs an assignment with right shift node. - * - * @param PHPParser_Node_Expr $var Variable - * @param PHPParser_Node_Expr $expr Expression - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Expr $var, PHPParser_Node_Expr $expr, array $attributes = array()) { - parent::__construct( - array( - 'var' => $var, - 'expr' => $expr - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/BitwiseAnd.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/BitwiseAnd.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/BitwiseAnd.php deleted file mode 100644 index fffac44..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/BitwiseAnd.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Expr $left The left hand side expression - * @property PHPParser_Node_Expr $right The right hand side expression - */ -class PHPParser_Node_Expr_BitwiseAnd extends PHPParser_Node_Expr -{ - /** - * Constructs a bitwise and node. - * - * @param PHPParser_Node_Expr $left The left hand side expression - * @param PHPParser_Node_Expr $right The right hand side expression - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Expr $left, PHPParser_Node_Expr $right, array $attributes = array()) { - parent::__construct( - array( - 'left' => $left, - 'right' => $right - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/BitwiseNot.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/BitwiseNot.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/BitwiseNot.php deleted file mode 100644 index 635d200..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/BitwiseNot.php +++ /dev/null @@ -1,22 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Expr $expr Expression - */ -class PHPParser_Node_Expr_BitwiseNot extends PHPParser_Node_Expr -{ - /** - * Constructs a bitwise not node. - * - * @param PHPParser_Node_Expr $expr Expression - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Expr $expr, array $attributes = array()) { - parent::__construct( - array( - 'expr' => $expr - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/BitwiseOr.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/BitwiseOr.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/BitwiseOr.php deleted file mode 100644 index cebd70d..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/BitwiseOr.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Expr $left The left hand side expression - * @property PHPParser_Node_Expr $right The right hand side expression - */ -class PHPParser_Node_Expr_BitwiseOr extends PHPParser_Node_Expr -{ - /** - * Constructs a bitwise or node. - * - * @param PHPParser_Node_Expr $left The left hand side expression - * @param PHPParser_Node_Expr $right The right hand side expression - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Expr $left, PHPParser_Node_Expr $right, array $attributes = array()) { - parent::__construct( - array( - 'left' => $left, - 'right' => $right - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/BitwiseXor.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/BitwiseXor.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/BitwiseXor.php deleted file mode 100644 index 742ca82..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/BitwiseXor.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Expr $left The left hand side expression - * @property PHPParser_Node_Expr $right The right hand side expression - */ -class PHPParser_Node_Expr_BitwiseXor extends PHPParser_Node_Expr -{ - /** - * Constructs a bitwise xor node. - * - * @param PHPParser_Node_Expr $left The left hand side expression - * @param PHPParser_Node_Expr $right The right hand side expression - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Expr $left, PHPParser_Node_Expr $right, array $attributes = array()) { - parent::__construct( - array( - 'left' => $left, - 'right' => $right - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/BooleanAnd.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/BooleanAnd.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/BooleanAnd.php deleted file mode 100644 index fd7e499..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/BooleanAnd.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Expr $left The left hand side expression - * @property PHPParser_Node_Expr $right The right hand side expression - */ -class PHPParser_Node_Expr_BooleanAnd extends PHPParser_Node_Expr -{ - /** - * Constructs a boolean and node. - * - * @param PHPParser_Node_Expr $left The left hand side expression - * @param PHPParser_Node_Expr $right The right hand side expression - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Expr $left, PHPParser_Node_Expr $right, array $attributes = array()) { - parent::__construct( - array( - 'left' => $left, - 'right' => $right - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/BooleanNot.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/BooleanNot.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/BooleanNot.php deleted file mode 100644 index 0a8a24c..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/BooleanNot.php +++ /dev/null @@ -1,22 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Expr $expr Expression - */ -class PHPParser_Node_Expr_BooleanNot extends PHPParser_Node_Expr -{ - /** - * Constructs a boolean not node. - * - * @param PHPParser_Node_Expr $expr Expression - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Expr $expr, array $attributes = array()) { - parent::__construct( - array( - 'expr' => $expr - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/BooleanOr.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/BooleanOr.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/BooleanOr.php deleted file mode 100644 index cd03851..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/BooleanOr.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Expr $left The left hand side expression - * @property PHPParser_Node_Expr $right The right hand side expression - */ -class PHPParser_Node_Expr_BooleanOr extends PHPParser_Node_Expr -{ - /** - * Constructs a boolean or node. - * - * @param PHPParser_Node_Expr $left The left hand side expression - * @param PHPParser_Node_Expr $right The right hand side expression - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Expr $left, PHPParser_Node_Expr $right, array $attributes = array()) { - parent::__construct( - array( - 'left' => $left, - 'right' => $right - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast.php deleted file mode 100644 index 562cccc..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast.php +++ /dev/null @@ -1,22 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Expr $expr Expression - */ -abstract class PHPParser_Node_Expr_Cast extends PHPParser_Node_Expr -{ - /** - * Constructs a cast node. - * - * @param PHPParser_Node_Expr $expr Expression - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Expr $expr, array $attributes = array()) { - parent::__construct( - array( - 'expr' => $expr - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/Array.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/Array.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/Array.php deleted file mode 100644 index e712d49..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/Array.php +++ /dev/null @@ -1,5 +0,0 @@ -<?php - -class PHPParser_Node_Expr_Cast_Array extends PHPParser_Node_Expr_Cast -{ -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/Bool.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/Bool.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/Bool.php deleted file mode 100644 index ca311da..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/Bool.php +++ /dev/null @@ -1,5 +0,0 @@ -<?php - -class PHPParser_Node_Expr_Cast_Bool extends PHPParser_Node_Expr_Cast -{ -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/Double.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/Double.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/Double.php deleted file mode 100644 index 054e729..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/Double.php +++ /dev/null @@ -1,5 +0,0 @@ -<?php - -class PHPParser_Node_Expr_Cast_Double extends PHPParser_Node_Expr_Cast -{ -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/Int.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/Int.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/Int.php deleted file mode 100644 index 85dff31..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/Int.php +++ /dev/null @@ -1,5 +0,0 @@ -<?php - -class PHPParser_Node_Expr_Cast_Int extends PHPParser_Node_Expr_Cast -{ -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/Object.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/Object.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/Object.php deleted file mode 100644 index 16b00e5..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/Object.php +++ /dev/null @@ -1,5 +0,0 @@ -<?php - -class PHPParser_Node_Expr_Cast_Object extends PHPParser_Node_Expr_Cast -{ -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/String.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/String.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/String.php deleted file mode 100644 index d6fdc11..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/String.php +++ /dev/null @@ -1,5 +0,0 @@ -<?php - -class PHPParser_Node_Expr_Cast_String extends PHPParser_Node_Expr_Cast -{ -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/Unset.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/Unset.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/Unset.php deleted file mode 100644 index 43c4cd9..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/Unset.php +++ /dev/null @@ -1,5 +0,0 @@ -<?php - -class PHPParser_Node_Expr_Cast_Unset extends PHPParser_Node_Expr_Cast -{ -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/ClassConstFetch.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/ClassConstFetch.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/ClassConstFetch.php deleted file mode 100644 index d4c8998..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/ClassConstFetch.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Name|PHPParser_Node_Expr $class Class name - * @property string $name Constant name - */ -class PHPParser_Node_Expr_ClassConstFetch extends PHPParser_Node_Expr -{ - /** - * Constructs a class const fetch node. - * - * @param PHPParser_Node_Name|PHPParser_Node_Expr $class Class name - * @param string $name Constant name - * @param array $attributes Additional attributes - */ - public function __construct($class, $name, array $attributes = array()) { - parent::__construct( - array( - 'class' => $class, - 'name' => $name - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Clone.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Clone.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Clone.php deleted file mode 100644 index 1d9d023..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Clone.php +++ /dev/null @@ -1,22 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Expr $expr Expression - */ -class PHPParser_Node_Expr_Clone extends PHPParser_Node_Expr -{ - /** - * Constructs a clone node. - * - * @param PHPParser_Node_Expr $expr Expression - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Expr $expr, array $attributes = array()) { - parent::__construct( - array( - 'expr' => $expr - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Closure.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Closure.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Closure.php deleted file mode 100644 index 536268d..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Closure.php +++ /dev/null @@ -1,35 +0,0 @@ -<?php - -/** - * @property PHPParser_Node[] $stmts Statements - * @property PHPParser_Node_Param[] $params Parameters - * @property PHPParser_Node_Expr_ClosureUse[] $uses use()s - * @property bool $byRef Whether to return by reference - * @property bool $static Whether the closure is static - */ -class PHPParser_Node_Expr_Closure extends PHPParser_Node_Expr -{ - /** - * Constructs a lambda function node. - * - * @param array $subNodes Array of the following optional subnodes: - * 'stmts' => array(): Statements - * 'params' => array(): Parameters - * 'uses' => array(): use()s - * 'byRef' => false : Whether to return by reference - * 'static' => false : Whether the closure is static - * @param array $attributes Additional attributes - */ - public function __construct(array $subNodes = array(), array $attributes = array()) { - parent::__construct( - $subNodes + array( - 'stmts' => array(), - 'params' => array(), - 'uses' => array(), - 'byRef' => false, - 'static' => false, - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/ClosureUse.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/ClosureUse.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/ClosureUse.php deleted file mode 100644 index f10b3a7..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/ClosureUse.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -/** - * @property string $var Name of variable - * @property bool $byRef Whether to use by reference - */ -class PHPParser_Node_Expr_ClosureUse extends PHPParser_Node_Expr -{ - /** - * Constructs a closure use node. - * - * @param string $var Name of variable - * @param bool $byRef Whether to use by reference - * @param array $attributes Additional attributes - */ - public function __construct($var, $byRef = false, array $attributes = array()) { - parent::__construct( - array( - 'var' => $var, - 'byRef' => $byRef - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Concat.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Concat.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Concat.php deleted file mode 100644 index 724cb6b..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Concat.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Expr $left The left hand side expression - * @property PHPParser_Node_Expr $right The right hand side expression - */ -class PHPParser_Node_Expr_Concat extends PHPParser_Node_Expr -{ - /** - * Constructs a concat node. - * - * @param PHPParser_Node_Expr $left The left hand side expression - * @param PHPParser_Node_Expr $right The right hand side expression - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Expr $left, PHPParser_Node_Expr $right, array $attributes = array()) { - parent::__construct( - array( - 'left' => $left, - 'right' => $right - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/ConstFetch.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/ConstFetch.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/ConstFetch.php deleted file mode 100644 index 8a21884..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/ConstFetch.php +++ /dev/null @@ -1,22 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Name $name Constant name - */ -class PHPParser_Node_Expr_ConstFetch extends PHPParser_Node_Expr -{ - /** - * Constructs a const fetch node. - * - * @param PHPParser_Node_Name $name Constant name - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Name $name, array $attributes = array()) { - parent::__construct( - array( - 'name' => $name - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Div.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Div.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Div.php deleted file mode 100644 index caa5d2c..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Div.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Expr $left The left hand side expression - * @property PHPParser_Node_Expr $right The right hand side expression - */ -class PHPParser_Node_Expr_Div extends PHPParser_Node_Expr -{ - /** - * Constructs a division node. - * - * @param PHPParser_Node_Expr $left The left hand side expression - * @param PHPParser_Node_Expr $right The right hand side expression - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Expr $left, PHPParser_Node_Expr $right, array $attributes = array()) { - parent::__construct( - array( - 'left' => $left, - 'right' => $right - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Empty.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Empty.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Empty.php deleted file mode 100644 index fb55505..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Empty.php +++ /dev/null @@ -1,22 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Expr $expr Expression - */ -class PHPParser_Node_Expr_Empty extends PHPParser_Node_Expr -{ - /** - * Constructs an empty() node. - * - * @param PHPParser_Node_Expr $expr Expression - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Expr $expr, array $attributes = array()) { - parent::__construct( - array( - 'expr' => $expr - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Equal.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Equal.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Equal.php deleted file mode 100644 index 64861c1..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Equal.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Expr $left The left hand side expression - * @property PHPParser_Node_Expr $right The right hand side expression - */ -class PHPParser_Node_Expr_Equal extends PHPParser_Node_Expr -{ - /** - * Constructs a equality comparison node. - * - * @param PHPParser_Node_Expr $left The left hand side expression - * @param PHPParser_Node_Expr $right The right hand side expression - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Expr $left, PHPParser_Node_Expr $right, array $attributes = array()) { - parent::__construct( - array( - 'left' => $left, - 'right' => $right - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/ErrorSuppress.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/ErrorSuppress.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/ErrorSuppress.php deleted file mode 100644 index 7222529..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/ErrorSuppress.php +++ /dev/null @@ -1,22 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Expr $expr Expression - */ -class PHPParser_Node_Expr_ErrorSuppress extends PHPParser_Node_Expr -{ - /** - * Constructs an error suppress node. - * - * @param PHPParser_Node_Expr $expr Expression - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Expr $expr, array $attributes = array()) { - parent::__construct( - array( - 'expr' => $expr - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Eval.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Eval.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Eval.php deleted file mode 100644 index 0b607b0..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Eval.php +++ /dev/null @@ -1,22 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Expr $expr Expression - */ -class PHPParser_Node_Expr_Eval extends PHPParser_Node_Expr -{ - /** - * Constructs an eval() node. - * - * @param PHPParser_Node_Expr $expr Expression - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Expr $expr, array $attributes = array()) { - parent::__construct( - array( - 'expr' => $expr - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Exit.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Exit.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Exit.php deleted file mode 100644 index 6870b44..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Exit.php +++ /dev/null @@ -1,22 +0,0 @@ -<?php - -/** - * @property null|PHPParser_Node_Expr $expr Expression - */ -class PHPParser_Node_Expr_Exit extends PHPParser_Node_Expr -{ - /** - * Constructs an exit() node. - * - * @param null|PHPParser_Node_Expr $expr Expression - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Expr $expr = null, array $attributes = array()) { - parent::__construct( - array( - 'expr' => $expr - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/FuncCall.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/FuncCall.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/FuncCall.php deleted file mode 100644 index 8f85df1..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/FuncCall.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Name|PHPParser_Node_Expr $name Function name - * @property PHPParser_Node_Arg[] $args Arguments - */ -class PHPParser_Node_Expr_FuncCall extends PHPParser_Node_Expr -{ - /** - * Constructs a function call node. - * - * @param PHPParser_Node_Name|PHPParser_Node_Expr $name Function name - * @param PHPParser_Node_Arg[] $args Arguments - * @param array $attributes Additional attributes - */ - public function __construct($name, array $args = array(), array $attributes = array()) { - parent::__construct( - array( - 'name' => $name, - 'args' => $args - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Greater.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Greater.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Greater.php deleted file mode 100644 index 2ff3b94..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Greater.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Expr $left The left hand side expression - * @property PHPParser_Node_Expr $right The right hand side expression - */ -class PHPParser_Node_Expr_Greater extends PHPParser_Node_Expr -{ - /** - * Constructs a greater than comparison node. - * - * @param PHPParser_Node_Expr $left The left hand side expression - * @param PHPParser_Node_Expr $right The right hand side expression - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Expr $left, PHPParser_Node_Expr $right, array $attributes = array()) { - parent::__construct( - array( - 'left' => $left, - 'right' => $right - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/GreaterOrEqual.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/GreaterOrEqual.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/GreaterOrEqual.php deleted file mode 100644 index 015106d..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/GreaterOrEqual.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Expr $left The left hand side expression - * @property PHPParser_Node_Expr $right The right hand side expression - */ -class PHPParser_Node_Expr_GreaterOrEqual extends PHPParser_Node_Expr -{ - /** - * Constructs a greater than or equal node. - * - * @param PHPParser_Node_Expr $left The left hand side expression - * @param PHPParser_Node_Expr $right The right hand side expression - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Expr $left, PHPParser_Node_Expr $right, array $attributes = array()) { - parent::__construct( - array( - 'left' => $left, - 'right' => $right - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Identical.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Identical.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Identical.php deleted file mode 100644 index 1f2ac01..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Identical.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Expr $left The left hand side expression - * @property PHPParser_Node_Expr $right The right hand side expression - */ -class PHPParser_Node_Expr_Identical extends PHPParser_Node_Expr -{ - /** - * Constructs an identicality comparison node. - * - * @param PHPParser_Node_Expr $left The left hand side expression - * @param PHPParser_Node_Expr $right The right hand side expression - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Expr $left, PHPParser_Node_Expr $right, array $attributes = array()) { - parent::__construct( - array( - 'left' => $left, - 'right' => $right - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Include.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Include.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Include.php deleted file mode 100644 index 040de25..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Include.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Expr $expr Expression - * @property int $type Type of include - */ -class PHPParser_Node_Expr_Include extends PHPParser_Node_Expr -{ - const TYPE_INCLUDE = 1; - const TYPE_INCLUDE_ONCE = 2; - const TYPE_REQUIRE = 3; - const TYPE_REQUIRE_ONCE = 4; - - /** - * Constructs an include node. - * - * @param PHPParser_Node_Expr $expr Expression - * @param int $type Type of include - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Expr $expr, $type, array $attributes = array()) { - parent::__construct( - array( - 'expr' => $expr, - 'type' => $type - ), - $attributes - ); - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/80fd786e/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Instanceof.php ---------------------------------------------------------------------- diff --git a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Instanceof.php b/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Instanceof.php deleted file mode 100644 index 95da70c..0000000 --- a/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Instanceof.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -/** - * @property PHPParser_Node_Expr $expr Expression - * @property PHPParser_Node_Name|PHPParser_Node_Expr $class Class name - */ -class PHPParser_Node_Expr_Instanceof extends PHPParser_Node_Expr -{ - /** - * Constructs an instanceof check node. - * - * @param PHPParser_Node_Expr $expr Expression - * @param PHPParser_Node_Name|PHPParser_Node_Expr $class Class name - * @param array $attributes Additional attributes - */ - public function __construct(PHPParser_Node_Expr $expr, $class, array $attributes = array()) { - parent::__construct( - array( - 'expr' => $expr, - 'class' => $class - ), - $attributes - ); - } -} \ No newline at end of file
