X-Git-Url: http://www.aleph1.co.uk/gitweb/?a=blobdiff_plain;ds=sidebyside;f=vendor%2Fnikic%2Fphp-parser%2Flib%2FPhpParser%2FNode%2FParam.php;fp=vendor%2Fnikic%2Fphp-parser%2Flib%2FPhpParser%2FNode%2FParam.php;h=b35ee4ef094fa6824e4459fc55bc7ed9b2445d7b;hb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;hp=0000000000000000000000000000000000000000;hpb=57c063afa3f66b07c4bbddc2d6129a96d90f0aad;p=yaffs-website diff --git a/vendor/nikic/php-parser/lib/PhpParser/Node/Param.php b/vendor/nikic/php-parser/lib/PhpParser/Node/Param.php new file mode 100644 index 000000000..b35ee4ef0 --- /dev/null +++ b/vendor/nikic/php-parser/lib/PhpParser/Node/Param.php @@ -0,0 +1,42 @@ +type = $type; + $this->byRef = $byRef; + $this->variadic = $variadic; + $this->name = $name; + $this->default = $default; + } + + public function getSubNodeNames() { + return array('type', 'byRef', 'variadic', 'name', 'default'); + } +}