Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
hpakdaman committed May 20, 2016
1 parent 0e9928b commit 7fa33f8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/GatewayResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ function make($port)
$this->port = $port;
$this->port->setConfig($this->config); // injects config
$this->port->setPortName($name); // injects config
$this->port->boot();

return $this;
}
Expand Down
5 changes: 5 additions & 0 deletions src/PortAbstract.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,11 @@ function __construct()
$this->db = app('db');
}

/** bootstraper */
function boot(){

}

function setConfig($config)
{
$this->config = $config;
Expand Down

0 comments on commit 7fa33f8

Please sign in to comment.