summaryrefslogtreecommitdiffstats
path: root/lib/class/media.interface.php
diff options
context:
space:
mode:
authorPaul Arthur <paul.arthur@flowerysong.com>2013-01-26 03:00:32 -0500
committerPaul Arthur <paul.arthur@flowerysong.com>2013-01-26 03:38:46 -0500
commitef4d3660605efc7f1328d4533b0f4bfb6c1107e2 (patch)
treee4377fb129a899e65aaaf421f8c97098aecaedd5 /lib/class/media.interface.php
parent8a750c3e875d590d351c3042570a134fcdf03e5d (diff)
downloadampache-ef4d3660605efc7f1328d4533b0f4bfb6c1107e2.tar.gz
ampache-ef4d3660605efc7f1328d4533b0f4bfb6c1107e2.tar.bz2
ampache-ef4d3660605efc7f1328d4533b0f4bfb6c1107e2.zip
Cosmetics: death to tabs
The refactoring I've been doing has reminded me of my strong preference for spaces, and I feel inclined to impose my will on the tree.
Diffstat (limited to 'lib/class/media.interface.php')
-rw-r--r--lib/class/media.interface.php70
1 files changed, 35 insertions, 35 deletions
diff --git a/lib/class/media.interface.php b/lib/class/media.interface.php
index 97e018d1..f1f794f8 100644
--- a/lib/class/media.interface.php
+++ b/lib/class/media.interface.php
@@ -1,5 +1,5 @@
<?php
-/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */
+/* vim:set softtabstop=4 shiftwidth=4 expandtab: */
/**
*
* LICENSE: GNU General Public License, version 2 (GPLv2)
@@ -28,44 +28,44 @@
*/
interface media {
- /**
- * format
- *
- * Creates the gussied-up member variables for output
- */
- public function format();
+ /**
+ * format
+ *
+ * Creates the gussied-up member variables for output
+ */
+ public function format();
- /**
- * get_stream_types
- *
- * Returns an array of strings; current types are 'native'
- * and 'transcode'
- */
- public function get_stream_types();
+ /**
+ * get_stream_types
+ *
+ * Returns an array of strings; current types are 'native'
+ * and 'transcode'
+ */
+ public function get_stream_types();
- /**
- * play_url
- *
- * Returns the url to stream the specified object
- *
- */
- public static function play_url($oid);
+ /**
+ * play_url
+ *
+ * Returns the url to stream the specified object
+ *
+ */
+ public static function play_url($oid);
- /**
- * get_transcode_settings
- *
- * Should only be called if 'transcode' was returned by get_stream_types
- * Returns a raw transcode command for this item; the optional target
- * parameter can be used to request a specific format instead of the
- * default from the configuration file.
- */
- public function get_transcode_settings($target = null);
+ /**
+ * get_transcode_settings
+ *
+ * Should only be called if 'transcode' was returned by get_stream_types
+ * Returns a raw transcode command for this item; the optional target
+ * parameter can be used to request a specific format instead of the
+ * default from the configuration file.
+ */
+ public function get_transcode_settings($target = null);
- /**
- * has_flag
- *
- */
- public function has_flag();
+ /**
+ * has_flag
+ *
+ */
+ public function has_flag();
} // end interface
?>