Skip to content

Commit 677cf73

Browse files
committed
Merge branch 'hotfix/1.0.2'
2 parents ed1fef0 + 7e3649f commit 677cf73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Parishop/HTTPProcessors.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function __construct($builder)
3232
public function processor($name)
3333
{
3434
if(!array_key_exists($name, $this->processors)) {
35-
$class = __NAMESPACE__ . '\\HTTPProcessors\\' . ucfirst($name);
35+
$class = get_class($this) . '\\' . ucfirst($name);
3636
if(!class_exists($class)) {
3737
return parent::processor($name);
3838
}

0 commit comments

Comments
 (0)