Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • patch-1
  • zf-3.x
  • Fix
  • origin/trunk
  • origin/new_version
  • 1.1.1
  • 1.1.0
  • 1.0.0
9 results

AbstractCodeGenerator.php

Blame
  • Forked from lib / unicaen / db-import
    Source project has a limited visibility.
    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;
        }
    }