Skip to content
Snippets Groups Projects
Select Git revision
  • main
1 result

hash_tbl.h

Blame
  • Forked from Matthieu Dien / TP Introduction à la sécurité L2
    Source project has a limited visibility.
    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;
        }
    }