summaryrefslogtreecommitdiffstats
path: root/pts-core/options/list_modules.php
diff options
context:
space:
mode:
authorMichael Larabel <michael@phx-laptop.(none)>2008-11-29 18:49:02 -0500
committerMichael Larabel <michael@phx-laptop.(none)>2008-11-29 18:49:02 -0500
commit2d9499273f3f799b65ebe06c97786aa68ba797c7 (patch)
treec4455cb36cbeacffcc07828ebc7e1f92b6628f9d /pts-core/options/list_modules.php
parentc7356bebfd9ade46678a591b6f53f06b8c0b7261 (diff)
downloadphoronix-test-suite-upstream-2d9499273f3f799b65ebe06c97786aa68ba797c7.tar.gz
phoronix-test-suite-upstream-2d9499273f3f799b65ebe06c97786aa68ba797c7.tar.xz
phoronix-test-suite-upstream-2d9499273f3f799b65ebe06c97786aa68ba797c7.zip
pts-core: Ensure all PTS options extend the pts_option_interface
Diffstat (limited to 'pts-core/options/list_modules.php')
-rw-r--r--pts-core/options/list_modules.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/pts-core/options/list_modules.php b/pts-core/options/list_modules.php
index 1233114..5db3d20 100644
--- a/pts-core/options/list_modules.php
+++ b/pts-core/options/list_modules.php
@@ -20,9 +20,9 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-class list_modules
+class list_modules implements pts_option_interface
{
- public static function run()
+ public static function run($r)
{
echo pts_string_header("Phoronix Test Suite - Modules");
$available_modules = array_merge(glob(MODULE_DIR . "*.sh"), glob(MODULE_DIR . "*.php"));