Conditions | 3 |
Paths | 3 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
27 | protected function findLlum() |
||
28 | { |
||
29 | $HOME = $this->getUserHomePath(); |
||
30 | if (is_executable($this->getRealPath("$HOME/.composer/vendor/bin/llum"))) { |
||
31 | return "$HOME/.composer/vendor/bin/llum"; |
||
32 | } |
||
33 | if (is_executable($this->getRealPath("$HOME/.config/composer/vendor/bin/llum"))) { |
||
34 | return "$HOME/.config/composer/vendor/bin/llum"; |
||
35 | } |
||
36 | |||
37 | return 'llum'; |
||
38 | } |
||
39 | |||
50 |