@@ 415-421 (lines=7) @@ | ||
412 | return $this->getHooks($names, self::INTERACT, $annotationData); |
|
413 | } |
|
414 | ||
415 | protected function getValidators($names, AnnotationData $annotationData) |
|
416 | { |
|
417 | return array_merge( |
|
418 | $this->getHooks($names, self::ARGUMENT_VALIDATOR, $annotationData), |
|
419 | $this->getHooks($names, self::COMMAND_HOOK, $annotationData, ['pre-', '']) |
|
420 | ); |
|
421 | } |
|
422 | ||
423 | protected function getProcessResultHooks($names, AnnotationData $annotationData) |
|
424 | { |
|
@@ 423-429 (lines=7) @@ | ||
420 | ); |
|
421 | } |
|
422 | ||
423 | protected function getProcessResultHooks($names, AnnotationData $annotationData) |
|
424 | { |
|
425 | return array_merge( |
|
426 | $this->getHooks($names, self::COMMAND_HOOK, $annotationData, ['post-']), |
|
427 | $this->getHooks($names, self::PROCESS_RESULT, $annotationData) |
|
428 | ); |
|
429 | } |
|
430 | ||
431 | protected function getAlterResultHooks($names, AnnotationData $annotationData) |
|
432 | { |