Skip to content

Commit

Permalink
Fix Scrutinizer issues (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidePastore authored Nov 13, 2016
1 parent 2401ae5 commit b2b8e42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Validation.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class Validation
public function __construct($validators = null, $translator = null)
{
// Set the validators
if (is_array($validators) || $validators instanceof ArrayAccess) {
if (is_array($validators) || $validators instanceof \ArrayAccess) {
$this->validators = $validators;
} elseif (is_null($validators)) {
$this->validators = [];
Expand Down

0 comments on commit b2b8e42

Please sign in to comment.