slope-it / breadcrumb-bundle

A bundle for generating dynamic breadcrumbs in Symfony applications
Other
10 stars 4 forks source link

Add alias to BreadcrumbBuilder #11

Closed Jupi007 closed 2 years ago

Jupi007 commented 2 years ago

Add alias to BreadcrumbBuilder. This allow to autowire the service like this:

<?php

...

use SlopeIt\BreadcrumbBundle\Service\BreadcrumbBuilder;

class AdminStayController extends AbstractController
{
    public function index(BreadcrumbBuilder $breadcrumb)
    {
        ...
    }
}

Closes #10

asprega commented 2 years ago

closing: this is not necessary to make the service injectable (as explained in the related issue)