Skip to content
Snippets Groups Projects
Select Git revision
  • bc9774339c27f88a2640ed4c9d9142cc2c0f6fb4
  • master default protected
  • release/8.0-perimetres
  • release_6.3.0
  • php84
  • 5.x
  • detached3
  • detached4
  • detached2
  • detached
  • 6.0.x
  • release/1.3.0
  • 6.x
  • pull_request_1
  • release-1.2.0
  • bg-php8
  • 6.3.0
  • 5.1.2
  • 6.2.1
  • 6.2.0
  • 6.1.2
  • 6.1.1
  • 5.1.1
  • 6.0.5
  • 6.1.0
  • 5.1.0
  • 6.0.4
  • 6.0.3
  • 5.0.7
  • 6.0.2
  • 6.0.1
  • 6.0.0
  • 1.2.3
  • 5.0.6
  • 5.0.5
  • 1.2.2
36 results

schema_postgresql.sql

Blame
  • 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;
        }
    }