| Conditions | 3 |
| Paths | 3 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 37 | protected function findLlum() |
||
| 38 | { |
||
| 39 | $HOME = $this->getUserHomePath(); |
||
| 40 | if (is_executable($this->getRealPath("$HOME/.composer/vendor/bin/llum"))) { |
||
| 41 | return "$HOME/.composer/vendor/bin/llum"; |
||
| 42 | } |
||
| 43 | if (is_executable($this->getRealPath("$HOME/.config/composer/vendor/bin/llum"))) { |
||
| 44 | return "$HOME/.config/composer/vendor/bin/llum"; |
||
| 45 | } |
||
| 46 | |||
| 47 | return 'llum'; |
||
| 48 | } |
||
| 49 | |||
| 59 | } |