start to implement database part

This commit is contained in:
Manuel Raynaud
2012-10-04 09:34:11 +02:00
parent e4fcadd3ec
commit 56446d0aa3
7 changed files with 96 additions and 12 deletions

View File

@@ -22,7 +22,7 @@ foreach ($namespaces as $namespace => $directory) {
$loader->registerNamespace($namespace, $directory);
}
$loader->register('Thelia',__DIR__ . '/lib/');
$loader->registerNamespace('Thelia', __DIR__ . '/lib/');
$loader->register();

View File

@@ -0,0 +1,13 @@
<?php
namespace Thelia\Core;
use Symfony\Component\HttpKernel\Kernel;
class Thelia extends Kernel{
}
?>

View File

@@ -1,10 +0,0 @@
<?php
namespace Thelia;
class Thelia {
}
?>