File "FileListInterface.php"

Full Path: /home/laciafrdyl/www/wp-content/plugins/loco-translate/src/fs/FileListInterface.php
File size: 245 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

interface Loco_fs_FileListInterface extends Countable, Iterator {

    /**
     * Add a file uniquely
     * @return bool whether file was added (and didn't already exist)
     */
    public function add( Loco_fs_File $file ):bool;
    
}