Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
esokullu committed Jul 19, 2017
1 parent 1d921e7 commit c78cf38
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Pho/Framework/Handlers/Gateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ class Gateway
* @var array
*/
protected $adapters = [
"form" => __NAMESPACE__ . "\\Form::handle",
"get" => __NAMESPACE__ . "\\Get::handle",
"has" => __NAMESPACE__ . "\\Has::handle",
"set" => __NAMESPACE__ . "\\Set::handle"
"form" => "\\" . __NAMESPACE__ . "\\Form::handle",
"get" => "\\" . __NAMESPACE__ . "\\Get::handle",
"has" => "\\" . __NAMESPACE__ . "\\Has::handle",
"set" => "\\" . __NAMESPACE__ . "\\Set::handle"
];

/**
Expand Down

0 comments on commit c78cf38

Please sign in to comment.