imagecms/ImageCMS

View on GitHub
application/modules/mod_stats/interfaces/FileImport.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

interface FileImport
{

    /**
     * Include file (or all recursively files in dir)
     * The starting directory is the directory where the class is (witch using trait)
     * @param string $filePath
     */
    public function import($filePath);

}