diff --git a/classes/reporter.php b/classes/reporter.php index b5d172d..edc2c02 100644 --- a/classes/reporter.php +++ b/classes/reporter.php @@ -75,7 +75,7 @@ public function __construct($projectPath, $reportFolder = null) { } else { $this->reportFolder = PHP7MAR_DIR.DIRECTORY_SEPARATOR.'reports'; } - $this->fullFilePath = $this->reportFolder.DIRECTORY_SEPARATOR.date('Y-m-d H.i.s ').basename($this->projectPath, '.php').".md"; + $this->fullFilePath = $this->reportFolder.DIRECTORY_SEPARATOR.date('Y-m-d_H.i.s_').basename($this->projectPath, '.php').".md"; $this->file = fopen($this->fullFilePath, 'w+'); register_shutdown_function([$this, 'onShutdown']); @@ -161,4 +161,4 @@ public function onShutdown() { fclose($this->file); } } -?> \ No newline at end of file +?>