GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 951ad1...29ba67 )
by Alexey
08:55
created

LoggingCommand::errorHandler()   B

Complexity

Conditions 6
Paths 16

Size

Total Lines 18
Code Lines 13

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 18
rs 8.8571
cc 6
eloc 13
nc 16
nop 6
1
<?php
0 ignored issues
show
Coding Style Compatibility introduced by
For compatibility and reusability of your code, PSR1 recommends that a file should introduce either new symbols (like classes, functions, etc.) or have side-effects (like outputting something, or including other files), but not both at the same time. The first symbol is defined on line 15 and the first side effect is on line 9.

The PSR-1: Basic Coding Standard recommends that a file should either introduce new symbols, that is classes, functions, constants or similar, or have side effects. Side effects are anything that executes logic, like for example printing output, changing ini settings or writing to a file.

The idea behind this recommendation is that merely auto-loading a class should not change the state of an application. It also promotes a cleaner style of programming and makes your code less prone to errors, because the logic is not spread out all over the place.

To learn more about the PSR-1, please see the PHP-FIG site on the PSR-1.

Loading history...
2
/**
3
 * @author Alexey Tatarinov <[email protected]>
4
 * @link https://github.com/shogodev/argilla/
5
 * @copyright Copyright &copy; 2003-2016 Shogo
6
 * @license http://argilla.ru/LICENSE
7
 */
8
9
error_reporting(E_ALL & ~E_NOTICE & ~E_WARNING);
10
11
Yii::import('frontend.share.helpers.Utils');
12
Yii::import('frontend.share.*');
13
Yii::import('frontend.components.cli.*');
14
15
class LoggingCommand extends AbstractConsoleCommand
16
{
17
  public $logFileName;
18
19
  public $useDummyLogSystemLog = true;
20
21
  public $loggingEnvironmentsByError = false;
22
23
  /**
24
   * @var ConsoleFileLogger
25
   */
26
  protected $logger;
27
28
  public function init()
29
  {
30
    parent::init();
31
32
    if( empty($this->logFileName) )
33
      $this->logFileName = Utils::toSnakeCase(str_replace('Command', '', get_class($this))).'.log';
34
35
    if( !Yii::app()->params['mainConsoleLogger'] )
36
    {
37
      Yii::app()->params->add('mainConsoleLogger', new ConsoleFileLogger($this->logFileName));
38
      Yii::app()->params['mainConsoleLogger']->log("pid = ".getmypid());
39
      register_shutdown_function(array($this, 'shutdownHandler'));
40
      $this->setErrorHandler();
41
42
      if( $this->useDummyLogSystemLog )
43
        Yii::setLogger(new DummyLogger());
44
    }
45
46
    $this->logger = Yii::app()->params['mainConsoleLogger'];
47
48
    // для --enable-pcntl
49
    //declare(ticks = 1);
50
    //pcntl_signal(SIGTERM, array($this, 'signalHandler'));
51
    //pcntl_signal(SIGHUP,  array($this, 'signalHandler'));
52
  }
53
54
  public function setErrorHandler()
55
  {
56
    set_error_handler(array($this, 'errorHandler'), E_ALL);
57
  }
58
59
  public function shutdownHandler()
60
  {
61
    if( is_array($error = error_get_last()) )
62
    {
63
      $code = isset($error['type']) ? $error['type'] : 0;
64
65
      if( in_array($code, array(E_ERROR, E_CORE_ERROR, 	E_COMPILE_ERROR, E_USER_ERROR, E_RECOVERABLE_ERROR)) )
66
      {
67
        $message = isset($error['message']) ? $error['message'] : '';
68
        $file = isset($error['file']) ? $error['file'] : '';
69
        $line = isset($error['line']) ? $error['line'] : '';
70
        $writeMemoryToLog = strpos(strtolower($message), 'memory') !== false ? false : true;
71
72
        $this->errorHandler($code, $message, $file, $line, array(), $writeMemoryToLog);
73
      }
74
      else
75
        $this->logger->flush();
76
    }
77
  }
78
79
  /**
80
   * @param int $errNo
81
   * @param string $errorString
82
   * @param string $errorFile
83
   * @param string $errorLine
84
   * @param array $errorContext
85
   * @param bool $writeMemoryInfo
86
   *
87
   * @return bool
88
   */
89
  public function errorHandler($errNo , $errorString , $errorFile='',  $errorLine='', array $errorContext = array(), $writeMemoryInfo = true)
90
  {
91
    $message = $errorString;
92
93
    if( !empty($errorFile) )
94
      $message .= PHP_EOL.'file: '.$errorFile;
95
    if( !empty($errorLine) )
96
      $message .= PHP_EOL.'line: '.$errorLine;
97
    if( $this->loggingEnvironmentsByError && !empty($errorContext) )
98
      $message .= PHP_EOL.'details: '.PHP_EOL.implode(PHP_EOL, $errorContext);
99
100
    if( $errNo == E_ERROR )
101
      $this->logger->error($message, true, $writeMemoryInfo);
102
    else
103
      $this->logger->warning($message, true, true);
104
105
    return false;
106
  }
107
108
  /*
109
  function signalHandler($signalId)
110
  {
111
    switch ($signalId)
112
    {
113
      case SIGTERM:
114
        $this->logger->error("Caught signal SIGTERM, shutdown task", false, false);
115
        break;
116
      case SIGHUP:
117
        $this->logger->error("Caught signal SIGHUP, restart task", false, false);
118
        break;
119
      default:
120
        $this->logger->error("Caught signal id = ".$signalId, false, false);
121
    }
122
  }*/
123
}