JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "Runner.php"
Full Path: /var/www/laravel_filter/vendor/nwidart/laravel-modules/src/Process/Runner.php
File size: 552 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Nwidart\Modules\Process;
use Nwidart\Modules\Contracts\RepositoryInterface;
use Nwidart\Modules\Contracts\RunableInterface;
class Runner implements RunableInterface
{
/**
* The module instance.
* @var RepositoryInterface
*/
protected $module;
public function __construct(RepositoryInterface $module)
{
$this->module = $module;
}
/**
* Run the given command.
*
* @param string $command
*/
public function run($command)
{
passthru($command);
}
}