moved asset container to system directory.
This commit is contained in:
parent
b504089db7
commit
153d7007ac
|
@ -19,7 +19,7 @@ public static function container($container = 'default')
|
|||
{
|
||||
if ( ! isset(static::$containers[$container]))
|
||||
{
|
||||
static::$containers[$container] = new Asset\Container($container);
|
||||
static::$containers[$container] = new Asset_Container($container);
|
||||
}
|
||||
|
||||
return static::$containers[$container];
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
<?php namespace System\Asset;
|
||||
<?php namespace System;
|
||||
|
||||
use System\HTML;
|
||||
|
||||
class Container {
|
||||
class Asset_Container {
|
||||
|
||||
/**
|
||||
* The asset container name.
|
Loading…
Reference in New Issue