Skip to content
This repository has been archived by the owner on Jan 8, 2020. It is now read-only.

PHPCS fixes for Zend\InputFilter #6973

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion library/Zend/InputFilter/BaseInputFilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ protected function validateInputs(array $inputs, array $data = array())
&& $input->isRequired()
&& $input->allowEmpty()
) {
if (!($input instanceOf EmptyContextInterface && $input->continueIfEmpty())) {
if (!($input instanceof EmptyContextInterface && $input->continueIfEmpty())) {
$this->validInputs[$name] = $input;
continue;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

namespace Zend\InputFilter\Exception;

class InvalidArgumentException extends \InvalidArgumentException implements
ExceptionInterface
class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface
{
}
1 change: 0 additions & 1 deletion library/Zend/InputFilter/InputFilterAwareTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

namespace Zend\InputFilter;


trait InputFilterAwareTrait
{
/**
Expand Down