Skip to content
Snippets Groups Projects
Select Git revision
  • b1ba2140267697e619430b8c638610564ee4e7e3
  • master default protected
  • php84
  • detached7
  • detached6
  • detached5
  • detached
  • detached2
  • detached3
  • detached4
  • 4.x
  • origin/1.0.3
  • origin/1.0.2
  • 6.1.0
  • 6.0.6
  • 6.0.5
  • 6.0.4
  • 6.0.3
  • 6.0.2
  • 6.0.1
  • 6.0.0
  • 4.0.3
  • 4.0.2
  • 4.0.1
  • 4.0
  • 3.1.7
  • 3.1.6
  • 3.1.5
  • 3.1.4
  • 3.1.3
  • 3.1.2
  • 3.1.1
  • 3.1.0
33 results

Module.php

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    AbstractConsoleController.php 1.97 KiB
    <?php
    
    /**
     * @see       https://github.com/laminas/laminas-mvc-console for the canonical source repository
     * @copyright https://github.com/laminas/laminas-mvc-console/blob/master/COPYRIGHT.md
     * @license   https://github.com/laminas/laminas-mvc-console/blob/master/LICENSE.md New BSD License
     */
    
    namespace Unicaen\Console\Controller;
    
    use Unicaen\Console\Adapter\AdapterInterface as ConsoleAdapter;
    use Unicaen\Console\Request as ConsoleRequest;
    use Unicaen\Console\Exception\InvalidArgumentException;
    use Unicaen\Console\View\ViewModel;
    use Laminas\Mvc\Controller\AbstractActionController;
    use Laminas\Stdlib\RequestInterface;
    use Laminas\Stdlib\ResponseInterface;
    
    /**
      * @method \Unicaen\Console\View\ViewModel createConsoleNotFoundModel()
     */
    abstract class AbstractConsoleController extends AbstractActionController
    {
        /**
         * @var ConsoleAdapter
         */
        protected $console;
    
        /**
         * @param ConsoleAdapter $console
         */
        public function setConsole(ConsoleAdapter $console)
        {
            $this->console = $console;
            return $this;
        }
    
        /**
         * @return ConsoleAdapter
         */
        public function getConsole()
        {
            return $this->console;
        }
    
        /**
         * {@inheritdoc}
         */
        public function dispatch(RequestInterface $request, ResponseInterface $response = null)
        {
            if (! $request instanceof ConsoleRequest) {
                throw new InvalidArgumentException(sprintf(
                    '%s can only dispatch requests in a console environment',
                    get_called_class()
                ));
            }
            return parent::dispatch($request, $response);
        }
    
        /**
         * Action called if matched action does not exist.
         *
         * @return ViewModel
         */
        public function notFoundAction()
        {
            $event = $this->getEvent();
            $routeMatch = $event->getRouteMatch();
            $routeMatch->setParam('action', 'not-found');
    
            $helper = $this->plugin('createConsoleNotFoundModel');
            return $helper();
        }
    }