コード例 #1
0
ファイル: _ide_helper.php プロジェクト: satriashp/tour
 /**
  * Dynamically pass log calls into the writer.
  *
  * @param string $level
  * @param string $message
  * @param array $context
  * @return void 
  * @static 
  */
 public static function write($level, $message, $context = array())
 {
     \Illuminate\Log\Writer::write($level, $message, $context);
 }
コード例 #2
0
ファイル: _ide_helper.php プロジェクト: nmkr/basic-starter
 /**
  * Dynamically pass log calls into the writer.
  *
  * @param mixed  (level, param, param)
  * @return mixed 
  * @static 
  */
 public static function write()
 {
     return \Illuminate\Log\Writer::write();
 }