Skip to content
Snippets Groups Projects
Select Git revision
  • b1fa9b6c964f99cf7ea30dae431f30e0680fb5c3
  • master default
  • 5.x
  • 7
  • 6.0.question
  • bg-php8
  • release_3.1.0
  • release_4.0.0
  • zf-3.0
  • zf-3.x
  • 6.0.5
  • 6.0.4
  • 5.0.5
  • 7.0.3
  • 7.0.2
  • 6.0.3
  • 6.0.2
  • 6.0.1
  • 5.0.4
  • 7.0.1
  • 5.0.3
  • 5.0.2
  • 5.0.1
  • 7.0.0
  • 6.0.0
  • 4.0.2
  • 5.0.0
  • 3.2.0
  • 3.1.21
  • 3.1.20
30 results

Module.php

Blame
  • Forked from lib / unicaen / ldap
    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;
        }
    }