diff options
author | Fabio Bas <ctrlaltca@gmail.com> | 2016-02-29 22:14:08 +0100 |
---|---|---|
committer | Fabio Bas <ctrlaltca@gmail.com> | 2016-03-29 17:40:11 +0200 |
commit | dc76cfdcf0521552667d44395a2290a5c8e48281 (patch) | |
tree | f7f0eea869f1abd47b7a9aa5b3314c617df3dd57 /tests/FunctionalTests/tickets | |
parent | 0ec0d073c120a2db371dfd4cd6f2a81fd9068676 (diff) |
Fixed 10 "critical" issues found by scrutinizer
* create function => closures
* removed var_dump from tests
Diffstat (limited to 'tests/FunctionalTests/tickets')
-rwxr-xr-x | tests/FunctionalTests/tickets/protected/pages/Ticket719.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/FunctionalTests/tickets/protected/pages/Ticket719.php b/tests/FunctionalTests/tickets/protected/pages/Ticket719.php index 376eecdd..64f8acb2 100755 --- a/tests/FunctionalTests/tickets/protected/pages/Ticket719.php +++ b/tests/FunctionalTests/tickets/protected/pages/Ticket719.php @@ -24,8 +24,8 @@ class Ticket719 extends TPage function suggestion_selected($sender, $param) { - var_dump($param->selectedIndex); } + public function suggestCountries($sender, $param) { $sender->setDataSource($this->matchCountries($param->Token)); |