fix calendar css, take 2. (#213)
[openemr.git] / interface / modules / zend_modules / library / Zend / Log / Writer / ChromePhp / ChromePhpInterface.php
blob569b6def3669cbee4f609279b6ad2cc91ac1c288
1 <?php
2 /**
3 * Zend Framework (http://framework.zend.com/)
5 * @link http://github.com/zendframework/zf2 for the canonical source repository
6 * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
7 * @license http://framework.zend.com/license/new-bsd New BSD License
8 */
10 namespace Zend\Log\Writer\ChromePhp;
12 interface ChromePhpInterface
14 /**
15 * Log an error message
17 * @param string $line
19 public function error($line);
21 /**
22 * Log a warning
24 * @param string $line
26 public function warn($line);
28 /**
29 * Log informational message
31 * @param string $line
33 public function info($line);
35 /**
36 * Log a trace
38 * @param string $line
40 public function trace($line);
42 /**
43 * Log a message
45 * @param string $line
47 public function log($line);