degov-8.x-2.0/modules/degov_theming/src/Factory/FilesystemFactory.php
modules/degov_theming/src/Factory/FilesystemFactory.php
<?php
namespace Drupal\degov_theming\Factory;
use Symfony\Component\Filesystem\Filesystem;
class FilesystemFactory {
/**
* @return Filesystem
*/
public function create() {
return new Filesystem();
}
}