Skip to content
This repository has been archived by the owner on Aug 10, 2022. It is now read-only.

Commit

Permalink
Fix: added name of the script owner to proxy filename
Browse files Browse the repository at this point in the history
  • Loading branch information
szytko committed Jun 7, 2016
1 parent 14eb3e7 commit 5d7865e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Proxy/Generator/File.php
Expand Up @@ -45,7 +45,7 @@ public function __construct($directory)
*/
public function getProxyFileName($className)
{
return $this->directory . DIRECTORY_SEPARATOR . str_replace('\\', '', $className) . '.php';
return $this->directory . DIRECTORY_SEPARATOR . str_replace('\\', '', $className) . '-' . get_current_user() . '.php';
}

}

0 comments on commit 5d7865e

Please sign in to comment.