Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
arodu committed Nov 28, 2021
2 parents 1649b2f + dc9d945 commit ec2885e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/View/Styles/Header.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ class Header
self::STYLE_BLACK => 'navbar-black navbar-light',
];

private Helper $_helper;
private string $_name;
private $_helper;
private $_name;

/**
* @param Helper $helper
*/
public function __construct(Helper $helper)
public function __construct($helper)
{
$this->_helper = $helper;
$this->_name = 'header';
Expand Down
6 changes: 3 additions & 3 deletions src/View/Styles/Sidebar.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@ class Sidebar
self::STYLE_LIGHT_BLACK => 'sidebar-light-black',
];

private Helper $_helper;
private string $_name;
private $_helper;
private $_name;

/**
* @param Helper $helper
*/
public function __construct(Helper $helper)
public function __construct($helper)
{
$this->_helper = $helper;
$this->_name = 'sidebar';
Expand Down

0 comments on commit ec2885e

Please sign in to comment.