Skip to content
This repository has been archived by the owner on Feb 27, 2020. It is now read-only.

Commit

Permalink
Use periods instead for Windows users.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexia committed Oct 27, 2015
1 parent 154d1b3 commit 53e3d77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/reporter.php
Expand Up @@ -75,7 +75,7 @@ public function __construct($projectPath, $reportFolder = null) {
} else {
$this->reportFolder = PHP7MAR_DIR.DIRECTORY_SEPARATOR.'reports'.DIRECTORY_SEPARATOR;
}
$this->fullFilePath = $this->reportFolder.date('Y-m-d H:i:s ').basename($this->projectPath, '.php').".md";
$this->fullFilePath = $this->reportFolder.date('Y-m-d H.i.s ').basename($this->projectPath, '.php').".md";

$this->file = fopen($this->fullFilePath, 'w+');
register_shutdown_function([$this, 'onShutdown']);
Expand Down

0 comments on commit 53e3d77

Please sign in to comment.