Files
carpseeds.pl/wp-content/plugins/loco-translate/src/fs/FileListInterface.php
2024-07-15 11:28:08 +02:00

12 lines
267 B
PHP

<?php
interface Loco_fs_FileListInterface extends Countable, Iterator {
/**
* Add a file uniquely
* @param Loco_fs_File
* @return bool whether file was added (and didn't already exist)
*/
public function add( Loco_fs_File $file );
}