Skip to content

Commit fd783d7

Browse files
committed
Renamed the feather component to foundation.
Signed-off-by: Jason Lewis <jason.lewis1991@gmail.com>
1 parent 3f42769 commit fd783d7

2 files changed

Lines changed: 24 additions & 1 deletion

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php namespace Feather\Components\Feather;
1+
<?php namespace Feather\Components\Foundation;
22

33
use Closure;
44
use ArrayAccess;
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?php namespace Feather\Components\Foundation;
2+
3+
class Component {
4+
5+
/**
6+
* The feather instance.
7+
*
8+
* @var Feather\Components\Foundation\Application
9+
*/
10+
protected $feather;
11+
12+
/**
13+
* Create a new component instance.
14+
*
15+
* @param Feather\Components\Foundation\Application $feather
16+
* @return void
17+
*/
18+
public function __construct(Application $feather)
19+
{
20+
$this->feather = $feather;
21+
}
22+
23+
}

0 commit comments

Comments
 (0)