Your IP : 127.0.0.1


Current Path : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/Event/Test/Unit/
Upload File :
Current File : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/Event/Test/Unit/ManagerStub.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

/**
 * Event manager stub
 */
namespace Magento\Framework\Event\Test\Unit;

use Magento\Framework\Event\ManagerInterface;

class ManagerStub implements ManagerInterface
{
    /**
     * Stub dispatch event
     *
     * @param string $eventName
     * @param array $params
     * @return null
     */
    public function dispatch($eventName, array $params = [])
    {
        switch ($eventName) {
            case 'cms_controller_router_match_before':
                $params['condition']->setRedirectUrl('http://www.example.com/');
                break;
        }

        return null;
    }
}