Skip to content
Snippets Groups Projects
Select Git revision
  • 2b07551e788852529b5e643ea63b8ed1e8324b18
  • master default protected
  • php84
  • ll-api-test
  • 6.x
  • release_6.2.0
  • modif_maintenance_phtml
  • 6.0.x
  • detached2
  • detached
  • php82
  • feature_SearchAndSelectFilter
  • 5.x
  • 4.x
  • 7.2.1
  • 7.2.0
  • 6.2.0
  • 7.1.0
  • 7.0.0
  • 1.1.1
  • 6.1.7
  • 6.1.6
  • 6.1.5
  • 6.0.16
  • 6.0.15
  • 6.1.4
  • 6.0.14
  • 6.1.3
  • 6.0.13
  • 6.1.2
  • 6.0.12
  • 6.1.1
  • 6.1.0
  • 6.0.11
34 results

RunSQLResult.php

Blame
  • Bertrand GAUTHIER's avatar
    Bertrand Gauthier authored
    Amélioration de RunSQLProcess : petite désadhérance avec Oracle, nouveaux attributs dans RunSQLResult, correction d'un warning
    2b07551e
    History
    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;
        }
    }