push
github
43 of 69 new or added lines in 5 files covered. (62.32%)
332 of 485 relevant lines covered (68.45%)
2.66 hits per line
1 |
<?php
|
|
2 |
|
|
3 |
namespace Daycry\CronJob\Traits; |
|
4 |
|
|
5 |
trait InteractsWithSpark
|
|
6 |
{ |
|
7 |
public function sparkPath(): string |
|
8 |
{ |
|
NEW
|
return FCPATH . '../spark'; |
× |
10 |
} |
|
11 |
|
|
12 |
public function sparkCommandInBackground(string $command): string |
|
13 |
{ |
|
NEW
|
return sprintf( |
× |
NEW
|
'%s %s %s',
|
× |
NEW
|
PHP_BINARY,
|
× |
NEW
|
$this->sparkPath(),
|
× |
NEW
|
$command,
|
× |
NEW
|
); |
× |
20 |
} |
|
21 |
} |