fruivita/corporate

View on GitHub
src/Importer/Contracts/IImportable.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace FruiVita\Corporate\Importer\Contracts;

interface IImportable
{
    /**
     * Run the import.
     *
     * @param string $file_path full path of the XML file with the corporate
     *                          structure that will be imported
     *
     * @return void
     */
    public function import(string $file_path);
}