1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
<?php
namespace Tev\Application\Bootstrap;
use Tev\Application\Application,
Tev\Contracts\BootstrapperInterface,
Tev\Post\Factory,
Tev\Post\Repository\PostRepository;
class Post implements BootstrapperInterface
{
public function bootstrap(Application $app)
{
$app->bind('post_factory', function ($app) {
$f = new Factory(
$app->fetch('author_factory'),
$app->fetch('taxonomy_factory'),
$app->fetch('field_factory')
);
return $f
->register('post', 'Tev\Post\Model\Post')
->register('page', 'Tev\Post\Model\Page')
->register('attachment', 'Tev\Post\Model\Attachment');
});
$app->bind('post_repo', function ($app) {
return new PostRepository($app->fetch('post_factory'));
});
}
}