Skip to content

Commit be96500

Browse files
committed
call parent
1 parent 11fe506 commit be96500

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

src/InputValidationInterceptor.php

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,6 @@
1111

1212
class InputValidationInterceptor extends AuraInputInterceptor
1313
{
14-
/**
15-
* @var FailureHandlerInterface
16-
*/
17-
protected $failureHandler;
18-
1914
/**
2015
* @param Reader $reader
2116
* @param FailureHandlerInterface $handler
@@ -24,7 +19,6 @@ class InputValidationInterceptor extends AuraInputInterceptor
2419
*/
2520
public function __construct(Reader $reader, FailureHandlerInterface $handler)
2621
{
27-
$this->reader = $reader;
28-
$this->failureHandler = $handler;
22+
parent::__construct($reader, $handler);
2923
}
3024
}

0 commit comments

Comments
 (0)