src/Storage/File.php
Remove error control operator '@' on line 36. Open
Open
public function store(string $message, string $level): StorageInterface
{
$flag = 0;
$logFile = $this->params['log_path'] . DIRECTORY_SEPARATOR . $level . '.log';
- Read upRead up
- Exclude checks
ErrorControlOperator
Error suppression should be avoided if possible as it doesn't just suppress the error, that you are trying to stop, but will also suppress errors that you didn't predict would ever occur. Consider changing error_reporting() level and/or setting up your own error handler.
Example
function foo($filePath) {
$file = @fopen($filPath); // hides exceptions
$key = @$array[$notExistingKey]; // assigns null to $key
}
Source http://phpmd.org/rules/cleancode.html#errorcontroloperator
Remove error control operator '@' on line 47. Open
Open
public function store(string $message, string $level): StorageInterface
{
$flag = 0;
$logFile = $this->params['log_path'] . DIRECTORY_SEPARATOR . $level . '.log';
- Read upRead up
- Exclude checks
ErrorControlOperator
Error suppression should be avoided if possible as it doesn't just suppress the error, that you are trying to stop, but will also suppress errors that you didn't predict would ever occur. Consider changing error_reporting() level and/or setting up your own error handler.
Example
function foo($filePath) {
$file = @fopen($filPath); // hides exceptions
$key = @$array[$notExistingKey]; // assigns null to $key
}