. */ namespace SP\Storage; /** * Interface FileStorageInterface * * @package SP\Storage */ interface FileStorageInterface { /** * @param string $path * * @return mixed */ public function load($path); /** * @param string $path * @param mixed $data * @return FileStorageInterface */ public function save($path, $data); }