Skip to content

Commit

Permalink
remove extra ";" from cache files
Browse files Browse the repository at this point in the history
  • Loading branch information
mindplay-dk committed Oct 10, 2012
1 parent 6d690e5 commit 4c844e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Annotation/AnnotationCache.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public function store($key, $code)
{
$path = $this->_getPath($key);

$content = self::PHP_TAG . $code . ";\n";
$content = self::PHP_TAG . $code . "\n";

if (@file_put_contents($path, $content, LOCK_EX) === false) {
throw new AnnotationException("unable to write cache file: $path");
Expand Down

0 comments on commit 4c844e7

Please sign in to comment.