Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/old/vendor/captainhook/captainhook/src/Event/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/old/vendor/captainhook/captainhook/src/Event/Factory.php
<?php

/**
 * This file is part of CaptainHook.
 *
 * (c) Sebastian Feldmann <[email protected]>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace CaptainHook\App\Event;

use CaptainHook\App\Config;
use CaptainHook\App\Console\IO;
use CaptainHook\App\Event;
use RuntimeException;
use SebastianFeldmann\Git\Repository;

/**
 * Event Factory
 *
 * @package CaptainHook
 * @author  Sebastian Feldmann <[email protected]>
 * @link    https://github.com/captainhookphp/captainhook
 * @since   Class available since Release 5.11.0
 */
class Factory
{
    /**
     * @var \CaptainHook\App\Config
     */
    protected $config;

    /**
     * @var \CaptainHook\App\Console\IO
     */
    private $io;

    /**
     * @var \SebastianFeldmann\Git\Repository
     */
    private $repository;

    /**
     * List of available events
     *
     * @var string[]
     */
    private $validEventIDs = [
        'onHookFailure' => HookFailed::class,
        'onHookSuccess' => HookSucceeded::class,
    ];

    /**
     * Event Factory
     *
     * @param \CaptainHook\App\Console\IO       $io
     * @param \CaptainHook\App\Config           $config
     * @param \SebastianFeldmann\Git\Repository $repository
     */
    public function __construct(IO $io, Config $config, Repository $repository)
    {
        $this->config     = $config;
        $this->io         = $io;
        $this->repository = $repository;
    }

    /**
     * Create a CaptainHook event
     *
     * @param string $name
     * @return \CaptainHook\App\Event
     */
    public function createEvent(string $name): Event
    {
        if (!$this->isEventIDValid($name)) {
            throw new RuntimeException('invalid event name: ' . $name);
        }

        $class = $this->validEventIDs[$name];
        /** @var \CaptainHook\App\Event $event */
        $event = new $class($this->io, $this->config, $this->repository);
        return $event;
    }

    /**
     * Validates an event name
     *
     * @param  string $name
     * @return bool
     */
    public function isEventIDValid(string $name): bool
    {
        return array_key_exists($name, $this->validEventIDs);
    }
}

Spamworldpro Mini