src\Rules\Extension.php line 49 `$ext = strtolower(pathinfo($value, PATHINFO_EXTENSION));` should be `$ext = strtolower(pathinfo($value['name'], PATHINFO_EXTENSION));`
src\Rules\Extension.php
line 49
$ext = strtolower(pathinfo($value, PATHINFO_EXTENSION));should be
$ext = strtolower(pathinfo($value['name'], PATHINFO_EXTENSION));