Files
media-listing/source/lib/MediaListing/File.class.php

15 lines
296 B
PHP

<?php
class MediaListing_File extends MediaListing_FileObject {
public function __construct($path) {
if ( ! is_file($path)) {
throw new MediaListing_Exception_NotAFile($path);
}
parent::__construct(parent::TYPE_File, $path);
}
}
?>