className = $className; $this->method = $methodName; $this->args = $args; $this->count = $count; } /** * Gets the name of the method * * @author Tommy Montgomery * @version 1.0 * @since 1.0 * * @return string */ public function getMethod() { return $this->method; } /** * Gets the arguments * * @author Tommy Montgomery * @version 1.0 * @since 1.0 * * @return array */ public function getArgs() { return $this->args; } /** * Gets the name of the class * * @author Tommy Montgomery * @version 1.0 * @since 1.0 * * @return mixed */ public function getClass() { return $this->className; } /** * Gets the count * * @author Tommy Montgomery * @version 1.0 * @since 1.0 * * @return mixed */ public function getCount() { return $this->count; } } ?>