silverstripe-framework/filesystem/storage/AssetNameGenerator.php
Damian Mooyman be239896d3 API Refactor of File / Folder to use DBFile
API Remove filesystem sync
API to handle file manipulations
2015-10-13 11:57:39 +13:00

30 lines
613 B
PHP

<?php
namespace SilverStripe\Filesystem\Storage;
/**
* Provides a mechanism for suggesting filename alterations to a file
*
* Does not actually check for existence of the file, but rather comes up with as many suggestions for
* the given file as possible to a finite limit.
*
* @package framework
* @subpackage filesystem
*/
interface AssetNameGenerator extends \Iterator {
/**
* Construct a generator for the given filename
*
* @param string $filename
*/
public function __construct($filename);
/**
* Number of attempts allowed
*
* @return int
*/
public function getMaxTries();
}