Skip to content

Commit

Permalink
code style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
LAHAXE Arnaud authored and LAHAXE Arnaud committed May 18, 2015
1 parent 93aecf2 commit e8c47be
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/LaravelU2f.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class LaravelU2f {

protected $u2f;

function __construct ()
public function __construct ()
{
$scheme = \Request::isSecure() ? "https://" : "http://";
$this->u2f = new \u2flib_server\U2F($scheme . \Request::getHttpHost());
Expand Down
2 changes: 1 addition & 1 deletion src/http/Controllers/U2fController.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class U2fController extends Controller
*/
protected $u2f;

function __construct (LaravelU2f $u2f)
public function __construct (LaravelU2f $u2f)
{
$this->u2f = $u2f;
}
Expand Down
2 changes: 1 addition & 1 deletion src/http/Middleware/U2f.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class U2f
*/
protected $u2f;

function __construct (LaravelU2f $u2f)
public function __construct (LaravelU2f $u2f)
{
$this->u2f = $u2f;
}
Expand Down

0 comments on commit e8c47be

Please sign in to comment.