| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | public function handle(CommandInterface $command, Closure $next) |
||
| 29 | { |
||
| 30 | do_action( |
||
| 31 | 'AHEE__EventEspresso_core_services_commands_middleware_AddActionHook__handle__before', |
||
| 32 | $command |
||
| 33 | ); |
||
| 34 | $results = $next($command); |
||
| 35 | do_action( |
||
| 36 | 'AHEE__EventEspresso_core_services_commands_middleware_AddActionHook__handle__after', |
||
| 37 | $command |
||
| 38 | ); |
||
| 39 | return $results; |
||
| 40 | } |
||
| 41 | } |
||
| 43 | // Location: EventEspresso\core\services\commands\middleware/AddActionHook.php |