![]() 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/Config/ |
<?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\Config; /** * Class Hook * * @package CaptainHook * @author Sebastian Feldmann <[email protected]> * @link https://github.com/captainhookphp/captainhook * @since Class available since Release 0.9.0 * @internal */ class Hook { /** * Hook name e.g. pre-commit * * @var string */ private $name; /** * Is hook enabled * * @var bool */ private $isEnabled = false; /** * List of Actions * * @var \CaptainHook\App\Config\Action[] */ private $actions = []; /** * Hook constructor * * @param string $name * @param bool $enabled */ public function __construct(string $name, bool $enabled = false) { $this->name = $name; $this->isEnabled = $enabled; } /** * Name getter * * @return string */ public function getName(): string { return $this->name; } /** * Enable or disable the hook * * @param bool $enabled * @return void */ public function setEnabled(bool $enabled): void { $this->isEnabled = $enabled; } /** * Is this hook enabled * * @return bool */ public function isEnabled(): bool { return $this->isEnabled; } /** * Add an action to the list * * @param \CaptainHook\App\Config\Action ...$actions * @return void */ public function addAction(Action ...$actions): void { foreach ($actions as $action) { $this->actions[] = $action; } } /** * Return the action list * * @return \CaptainHook\App\Config\Action[] */ public function getActions(): array { return $this->actions; } /** * Return config data * * @return array<string, mixed> */ public function getJsonData(): array { $config = ['enabled' => $this->isEnabled, 'actions' => []]; foreach ($this->actions as $action) { $config['actions'][] = $action->getJsonData(); } return $config; } }