Select Git revision
RunSQLResult.php
Bertrand Gauthier authored
Amélioration de RunSQLProcess : petite désadhérance avec Oracle, nouveaux attributs dans RunSQLResult, correction d'un warning
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
RunSQLResult.php 963 B
<?php
namespace UnicaenApp\Service\SQL;
use UnicaenApp\Process\ProcessResult;
/**
* Résultat de l'exécution d'instructions SQL.
*
* @author Unicaen
*/
class RunSQLResult extends ProcessResult
{
/**
* @var string
*/
protected $scriptPath;
/**
* @var string
*/
protected $logFilePath;
/**
* @return string
*/
public function getScriptPath()
{
return $this->scriptPath;
}
/**
* @param string $scriptPath
* @return self
*/
public function setScriptPath($scriptPath)
{
$this->scriptPath = $scriptPath;
return $this;
}
/**
* @return string
*/
public function getLogFilePath()
{
return $this->logFilePath;
}
/**
* @param string $logFilePath
* @return self
*/
public function setLogFilePath($logFilePath)
{
$this->logFilePath = $logFilePath;
return $this;
}
}