Skip to content

Commit f959145

Browse files
committed
updated docs, listParameters() is the new list_parameters()
1 parent d959002 commit f959145

File tree

5 files changed

+5
-6
lines changed

5 files changed

+5
-6
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,4 @@ php:
66
- '5.6'
77
- '7.0'
88
- '7.1'
9-
- hhvm
10-
- nightly
9+
- hhvm

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ use JasperPHP\JasperPHP;
185185
$input = __DIR__ . '/vendor/geekcom/phpjasper/examples/hello_world_params.jrxml';
186186

187187
$jasper = new JasperPHP;
188-
$output = $jasper->list_parameters($input)->execute();
188+
$output = $jasper->listParameters($input)->execute();
189189

190190
foreach($output as $parameter_description)
191191
print $parameter_description . '<pre>';

docs/de_DE/LESEN-MICH.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ use JasperPHP\JasperPHP;
182182
$input = __DIR__ . '/vendor/geekcom/phpjasper/examples/hello_world_params.jrxml';
183183

184184
$jasper = new JasperPHP;
185-
$output = $jasper->list_parameters($input)->execute();
185+
$output = $jasper->listParameters($input)->execute();
186186

187187
foreach($output as $parameter_description)
188188
print $parameter_description . '<pre>';

docs/pt_BR/LEIA-ME_pt_BR.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ use JasperPHP\JasperPHP;
182182
$input = __DIR__ . '/vendor/geekcom/phpjasper/examples/hello_world_params.jrxml';
183183

184184
$jasper = new JasperPHP;
185-
$output = $jasper->list_parameters($input)->execute();
185+
$output = $jasper->listParameters($input)->execute();
186186

187187
foreach($output as $parameter_description)
188188
print $parameter_description . '<pre>';

examples/example.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
)->execute();
2020

2121
// Listing Parameters of jasper file
22-
$jasperParameters = $jasper->list_parameters($jrxmlParamsFile)->execute();
22+
$jasperParameters = $jasper->listParameters($jrxmlParamsFile)->execute();
2323
print "<h2>Listing Parameters of jasper file</h2>\n";
2424
foreach($jasperParameters as $parameter_description) {
2525
print "<pre>" . $parameter_description . "</pre>\n";

0 commit comments

Comments
 (0)