summaryrefslogtreecommitdiff
path: root/scripts/dev/generate-phpt/src/gtFunction.php
diff options
context:
space:
mode:
authorZoe Slattery <zoe@php.net>2009-05-07 09:21:43 +0000
committerZoe Slattery <zoe@php.net>2009-05-07 09:21:43 +0000
commitcba448a9d358451338d57c5e45f7c7e06f3143d2 (patch)
treedf77a5d196aca30ffeb295d7dd5e79dc2429422a /scripts/dev/generate-phpt/src/gtFunction.php
parent903f306a60fddda0c7faf824d9252b08add34456 (diff)
downloadphp-git-cba448a9d358451338d57c5e45f7c7e06f3143d2.tar.gz
Replacing generate script with a new version
Diffstat (limited to 'scripts/dev/generate-phpt/src/gtFunction.php')
-rw-r--r--scripts/dev/generate-phpt/src/gtFunction.php48
1 files changed, 48 insertions, 0 deletions
diff --git a/scripts/dev/generate-phpt/src/gtFunction.php b/scripts/dev/generate-phpt/src/gtFunction.php
new file mode 100644
index 0000000000..74058216ee
--- /dev/null
+++ b/scripts/dev/generate-phpt/src/gtFunction.php
@@ -0,0 +1,48 @@
+<?php
+
+/**
+ * Class reperesents a single PHP function.
+ *
+ */
+class gtFunction extends gtTestSubject {
+
+ private $functionName;
+
+ /**
+ * Set the name of the name of the function
+ *
+ * @param string $functionName
+ */
+ public function __construct($functionName) {
+ $this->functionName = $functionName;
+ }
+
+
+ /**
+ * Get the names of function argments and initialise mandatory and optional argument arrays
+ *
+ */
+ public function setArgumentNames() {
+ $function= new ReflectionFunction($this->functionName);
+
+ foreach ($function->getParameters() as $i => $param) {
+ if($param->isOptional()) {
+ $this->optionalArgumentNames[] = $param->getName();
+ } else {
+ $this->mandatoryArgumentNames[] = $param->getName();
+ }
+ }
+ }
+
+
+ /**
+ * Return the name of the function
+ *
+ * @return string
+ */
+ public function getName() {
+ return $this->functionName;
+ }
+
+}
+?> \ No newline at end of file