We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Conditions | 3 |
Paths | 3 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
25 | public function __invoke(array $callableArgs = []): int |
||
26 | { |
||
27 | if (isset($this->totalCount)) { |
||
28 | return $this->totalCount; |
||
29 | } |
||
30 | |||
31 | $this->totalCount = is_callable($this->total) ? call_user_func_array($this->total, $callableArgs) : $this->total; |
||
|
|||
32 | |||
33 | return $this->totalCount; |
||
34 | } |
||
41 |