for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MGDigital\BusQue\Predis;
use Predis\Command\ScriptCommand;
class LuaFileCommand extends ScriptCommand
{
private $path;
public function __construct(string $path)
$this->path = $path;
}
public function getScript()
return file_get_contents($this->path);