for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MohsenAbrishami\Stethoscope\Services;
class Storage implements ServiceInterface
{
public function check(): string
return number_format((disk_free_space('/') / pow(1024, 3)), 2);
}