for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Gacela\Framework\Config;
final class FileIo implements FileIoInterface
{
public function existsFile(string $filePath): bool
return file_exists($filePath);
}
public function include(string $filePath): mixed
/** @psalm-suppress UnresolvableInclude */
return include $filePath;