Skip to content
Snippets Groups Projects
Select Git revision
  • d55c0d8409def897fff30b803faaee5ca5e5980d
  • master default protected
  • b24
  • ll-session
  • ll-workflow
  • ll-framework
  • ll-wf-finitions
  • alc-scindage-donnees-pj
  • FJ_LL_Tbl_Contrat
  • alc-docker-node
  • ll-apiplatform
  • php84
  • ll-rgpd
  • b23
  • alc-filtre-type-intervenant
  • ll-sans-mdb5
  • formules-ancienne-infra
  • ll-formules
  • alc-intervenant-dmep
  • ll-suppr-v_vol-s
  • b20
  • 24.11
  • 24.10
  • 24.9
  • 24.8
  • 24.7
  • 24.6
  • 24.5
  • 24.4
  • 24.3
  • 24.2
  • 24.1
  • 24.0
  • 23.15
  • 24.0-beta19
  • 24.0-beta18
  • 24.0-beta17
  • 24.0-beta16
  • 24.0-beta15
  • 24.0-beta14
  • 24.0-beta13
41 results

GenDbStructure.php

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