https://castor.jolicode.com/going-further/helpers/filesystem/#filesystem
Is there a way to make fs() context aware
run('bin/console make:controller App -n");
$phpSource = fs()->readFile(context()->workingDirectory . '/src/Controller/AppController.php');
# Preferred:
$phpSource = fs()->readFile('/src/Controller/AppController.php');
What's the best way to handle this situation, without prepending the working directory to the path?