Skip to content

Commit

Permalink
un-comment some lines in reference:show API example with filter feature
Browse files Browse the repository at this point in the history
  • Loading branch information
llaville committed May 9, 2015
1 parent 1ef2729 commit 4ff1318
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/api_reference_show.php
Expand Up @@ -30,7 +30,7 @@
$infos = $api->show('amqp');

// OR get releases only
//$infos = $api->show('amqp', false, true);
$infos = $api->show('amqp', false, true);

// OR get classes only, filtered by a closure
$closure = function ($data) {
Expand All @@ -47,6 +47,6 @@
}
return $data;
};
//$infos = $api->show('amqp', $closure, false, false, false, false, false, true);
$infos = $api->show('amqp', $closure, false, false, false, false, false, true);

var_export($infos);

0 comments on commit 4ff1318

Please sign in to comment.