diff options
author | arron.woods <arron.woods@deae1e92-32f9-c189-e222-5b9b5081a27a> | 2012-06-07 12:28:10 +0000 |
---|---|---|
committer | arron.woods <arron.woods@deae1e92-32f9-c189-e222-5b9b5081a27a> | 2012-06-07 12:28:10 +0000 |
commit | 4c2ec5eda13c29ed3095ecceb9c65db72dde8a8e (patch) | |
tree | f93eb6d47196f0e8805a5fcf73588283b4d2c26a /library/SSRS/Object/ReportParameter.php | |
parent | 5fbc2b89624fa01c117a7595b96e2e320c6440f3 (diff) | |
download | php-ssrs-0.1.5.zip php-ssrs-0.1.5.tar.gz php-ssrs-0.1.5.tar.bz2 |
Tagged 0.1.50.1.5
Diffstat (limited to 'library/SSRS/Object/ReportParameter.php')
-rwxr-xr-x | library/SSRS/Object/ReportParameter.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/library/SSRS/Object/ReportParameter.php b/library/SSRS/Object/ReportParameter.php index 346b082..75fb8ab 100755 --- a/library/SSRS/Object/ReportParameter.php +++ b/library/SSRS/Object/ReportParameter.php @@ -7,4 +7,12 @@ */ class SSRS_Object_ReportParameter extends SSRS_Object_Abstract { + public function __construct($name, $value) { + $this->name = $name; + $this->value = $value; + } + + public $name; + public $value; + } |