Skip to content

Commit 4088487

Browse files
Do not suppress errors.
1 parent 9b838b6 commit 4088487

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

PHPUnit/Util/Skeleton.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,9 +136,9 @@ public function write($file = '')
136136
$file = $this->outSourceFile;
137137
}
138138

139-
if ($fp = @fopen($file, 'wt')) {
140-
@fwrite($fp, $this->generate());
141-
@fclose($fp);
139+
if ($fp = fopen($file, 'wt')) {
140+
fwrite($fp, $this->generate());
141+
fclose($fp);
142142
}
143143
}
144144

0 commit comments

Comments
 (0)