Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • jc/dependencies-upgrade
  • jc/no-checksum
  • jc/upload-improvements
  • jc/linting
  • jc/collection-icons-and-tree
  • jc/img-editor
  • md/electron
  • v0.4.4
  • v0.4.3
  • v0.4.2
  • v0.4.1
  • v0.4.0
  • no-vuex
14 results

JamaActionsToolbar.vue

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    TimedOutCommandException.php 470 B
    <?php
    
    namespace UnicaenShell\Command\Exception;
    
    use Exception;
    
    class TimedOutCommandException extends Exception
    {
        private $timeout;
    
        /**
         * @param string $userFirendlyTimeout
         * @return $this
         */
        public function setTimeout($userFirendlyTimeout)
        {
            $this->timeout = $userFirendlyTimeout;
    
            return $this;
        }
    
        /**
         * @return string
         */
        public function getTimeout()
        {
            return $this->timeout;
        }
    }