summaryrefslogtreecommitdiffstats
path: root/pts-core/objects/pts_module_interface.php
diff options
context:
space:
mode:
authorMichael Larabel <michael@phx-laptop.(none)>2008-10-16 12:05:09 -0400
committerMichael Larabel <michael@phx-laptop.(none)>2008-10-16 12:05:09 -0400
commit0e0ff3d00bdb3f466af9b8183b2927fd9f5109f6 (patch)
tree615f18da1f66efb833b555c025e2c7816b233aa2 /pts-core/objects/pts_module_interface.php
parentb85db9cb3decd1459c90bbc836b6b268d69de2fe (diff)
downloadphoronix-test-suite-upstream-0e0ff3d00bdb3f466af9b8183b2927fd9f5109f6.tar.gz
phoronix-test-suite-upstream-0e0ff3d00bdb3f466af9b8183b2927fd9f5109f6.tar.xz
phoronix-test-suite-upstream-0e0ff3d00bdb3f466af9b8183b2927fd9f5109f6.zip
pts-core: Clean / optimize pts-core code / run PEAR's PHP_CodeSniffer
and clean up most errors and warnings
Diffstat (limited to 'pts-core/objects/pts_module_interface.php')
-rw-r--r--pts-core/objects/pts_module_interface.php22
1 files changed, 11 insertions, 11 deletions
diff --git a/pts-core/objects/pts_module_interface.php b/pts-core/objects/pts_module_interface.php
index 2ee80b6..4b6dd83 100644
--- a/pts-core/objects/pts_module_interface.php
+++ b/pts-core/objects/pts_module_interface.php
@@ -43,11 +43,11 @@ class pts_module_interface
// General Functions
//
- public static function __startup($obj = NULL)
+ public static function __startup($obj = null)
{
return;
}
- public static function __shutdown($obj = NULL)
+ public static function __shutdown($obj = null)
{
return;
}
@@ -56,19 +56,19 @@ class pts_module_interface
// Installation Functions
//
- public static function __pre_install_process($obj = NULL)
+ public static function __pre_install_process($obj = null)
{
return;
}
- public static function __pre_test_install($obj = NULL)
+ public static function __pre_test_install($obj = null)
{
return;
}
- public static function __post_test_install($obj = NULL)
+ public static function __post_test_install($obj = null)
{
return;
}
- public static function __post_install_process($obj = NULL)
+ public static function __post_install_process($obj = null)
{
return;
}
@@ -77,23 +77,23 @@ class pts_module_interface
// Run Functions
//
- public static function __pre_run_process($obj = NULL)
+ public static function __pre_run_process($obj = null)
{
return;
}
- public static function __pre_test_run($obj = NULL)
+ public static function __pre_test_run($obj = null)
{
return;
}
- public static function __interim_test_run($obj = NULL)
+ public static function __interim_test_run($obj = null)
{
return;
}
- public static function __post_test_run($obj = NULL)
+ public static function __post_test_run($obj = null)
{
return;
}
- public static function __post_run_process($obj = NULL)
+ public static function __post_run_process($obj = null)
{
return;
}