ILogger.php 324 B

1234567891011121314151617181920
  1. <?php
  2. namespace app\models\logger;
  3. use Yii;
  4. /*
  5. * To change this license header, choose License Headers in Project Properties.
  6. * To change this template file, choose Tools | Templates
  7. * and open the template in the editor.
  8. */
  9. /**
  10. *
  11. * @author denis
  12. */
  13. interface ILogger {
  14. public function log($message,$cat);
  15. }