Fixed bugs with task runner classes

Fixed strict errors in foreground and background task classes.
This commit is contained in:
2010-08-30 20:37:52 +01:00
parent de04fb5978
commit 4e59b22f3a
9 changed files with 114 additions and 22 deletions

View File

@@ -0,0 +1,15 @@
<?php
interface RippingCluster_Source_IPlugin extends RippingCluster_IPlugin {
public static function enumerate();
public static function load($source_filename, $scan = true, $use_cache = true);
public static function loadEncoded($encoded_filename, $scan = true, $use_cache = true);
public static function isValidSource($source);
}
?>