for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/*
* @author Martin Fris <[email protected]>
*/
namespace Go\Instrument\FileSystem;
use SplFileInfo as CoreSplFileInfo;
/**
*
final class SplFileInfo extends CoreSplFileInfo
{
* @param string $file_name
public function __construct($file_name)
$file_name = str_replace(DIRECTORY_SEPARATOR, '/', $file_name);
parent::__construct($file_name);
}