diff options
Diffstat (limited to 'tests/FunctionalTests/active-controls/protected/pages/ClientSideDispatch.php')
-rw-r--r-- | tests/FunctionalTests/active-controls/protected/pages/ClientSideDispatch.php | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/tests/FunctionalTests/active-controls/protected/pages/ClientSideDispatch.php b/tests/FunctionalTests/active-controls/protected/pages/ClientSideDispatch.php index 84099114..e747bb63 100644 --- a/tests/FunctionalTests/active-controls/protected/pages/ClientSideDispatch.php +++ b/tests/FunctionalTests/active-controls/protected/pages/ClientSideDispatch.php @@ -1,17 +1,17 @@ -<?php
-
-class ClientSideDispatch extends TPage
-{
-
- function method1($sender, $param)
- {
- $this->status1->Text = "Method 1 callback with parameter: {$param->CallbackParameter}";
- }
-
- function method2($sender, $param)
- {
- $this->status2->Text = "Method 2 callback";
- }
-}
-
+<?php + +class ClientSideDispatch extends TPage +{ + + function method1($sender, $param) + { + $this->status1->Text = "Method 1 callback with parameter: {$param->CallbackParameter}"; + } + + function method2($sender, $param) + { + $this->status2->Text = "Method 2 callback"; + } +} + ?>
\ No newline at end of file |