Fixing proper namespace for app/library
This commit is contained in:
parent
cb1e40ee0a
commit
aa37d10024
22 changed files with 78 additions and 62 deletions
13
app/library/Navigation.php
Normal file
13
app/library/Navigation.php
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<?php
|
||||
|
||||
namespace Httpcb;
|
||||
|
||||
class Navigation extends Navigation\Container
|
||||
{
|
||||
public function __construct($config)
|
||||
{
|
||||
foreach($config as $node) {
|
||||
$this->addChild($node);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in a new issue