We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11fe506 commit be96500Copy full SHA for be96500
src/InputValidationInterceptor.php
@@ -11,11 +11,6 @@
11
12
class InputValidationInterceptor extends AuraInputInterceptor
13
{
14
- /**
15
- * @var FailureHandlerInterface
16
- */
17
- protected $failureHandler;
18
-
19
/**
20
* @param Reader $reader
21
* @param FailureHandlerInterface $handler
@@ -24,7 +19,6 @@ class InputValidationInterceptor extends AuraInputInterceptor
24
*/
25
public function __construct(Reader $reader, FailureHandlerInterface $handler)
26
27
- $this->reader = $reader;
28
- $this->failureHandler = $handler;
22
+ parent::__construct($reader, $handler);
29
23
}
30
0 commit comments