我正在使用Laravel 5.2& PHP版本5.6.21并遇到了这个问题:
Log.php第8行中的FatalErrorException:无法声明类 App \ Utils \ System \ Log,因为名称已在使用中
in Log.php line 8
我的Log.php看起来像这样:
<?php namespace App\Utils\System;
use Log;
use App\Log as LogDB;
use Carbon\Carbon as Carbon;
class Log
{
public function save($msg,$flag)
{
/*
//check to see if there is an organisation set
$org = '';
if(!is_null(session('organisation_name')))
{
$org = session('organisation_name');
}
$message ='{"action":"'.$msg.'", "uuid":"'.\Auth::user()->id.'", "company_id":"'.\Auth::user()->company_id.'","Organisation":"'.$org.'","Date":"'.Carbon::now().'"}';
//set a local log
if($flag=='info')
Log::info($message);
//save to the DB
$l = new LogDB();
$l->log_message = $message;
$l->save();
*/
}
}
问题,我发现,如果我将日志重命名为其他任何内容,我总是会收到错误...
有人有这个问题吗?任何修复已知。
由于