for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Maestriam\FileSystem\Foundation;
use Maestriam\FileSystem\Entities\Folder;
use Maestriam\FileSystem\Foundation\Drive;
class FileSystem
{
public function drive(string $name) : Drive
return new Drive($name);
}
public function folder(string $path) : Folder
return new Folder($path);