05.
Register your Service in the Container
Keep on Learning!
If you liked what you've learned so far, dive in! Subscribe to get access to this tutorial plus video, code and script downloads.
If you liked what you've learned so far, dive in! Subscribe to get access to this tutorial plus video, code and script downloads.
Whoops, an error! Please, try again later.
34 Comments
Hello,
How did you get the auto-completion inside the Yaml file?
Thanks :)
Hi David R.
Lastest PhpStorm with activated Symfony plugin allows us to use autocomplete in yaml files.
Cheers!
there If transformer is not passing markdown_transformer object into construct since we are using services in our services.yml. Can I safely remove construct from our MarkdownTransformer class?
Hey jian su!
Good question. You cannot remove it, and for a very important reason :). In
services.yml, thanks toarguments: ['@markdown.parser'], when we call$this->get('app.markdown_transformer'), behind the scenes, the container IS instantiating ourMarkdownTransformerand it IS passing it themarkdown.parseras the first argument. Basically, imagine that, behind the scenes, this is happening (because it IS!):So even though we are not explicitly passing the argument to ourselves, the container is still passing this. So, it's definitely needed.
Does that make sense?
Make total Sense~! Services is awesome, it did a lot of dirty work behind the scenes! But The type hint things is kinda suck since I need to dig deep and find the base class, and then even i found it, there are multiple implements such as Cache, FlushableCache, ClearableCache, MultiGetCache, MultiPutCache. Even I am luck I found the Cache.. it also implement mutiple places...and then I need to find the one has save() and contains... you know what i mean.. any better way?
Hello
On the last step when I refresh
http://localhost:8000/genus/Balaena
I have error
Attempted to load class "MarkdownTransformer" from namespace "AppBundle\Service".
Did you forget a "use" statement for another namespace?
Stack Trace
in var\cache\dev\appDevDebugProjectContainer.php at line 300
protected function getApp_MarkdownTransformerService()
{
return $this->services['app.markdown_transformer'] = new \AppBundle\Service\MarkdownTransformer($this->get('markdown.parser'));
}
How could I to fix this?
Hey Nina
I believe you just have a tiny problem with your use statemets, or you forgot to import it or you chose the wrong type. Give it a look.
If you can't fix it, show me the code where you use the MarkdownTransformer, so I can give it a look for you
Cheers!
You used app.markdown_transformer as service name. I don't really understand why you specify app before markdown_transformer. Is this required or just optional?
Hey Misha!
The name you give to your services is totally up to you, but symfony has some conventions for it's community to follow
You can get more info about it here:
http://symfony.com/doc/curr...
Cheers!
And what if I want to get a repository and I need the Entity manager in my service?
I don't know what to give as argument in the services.yml
The code:
// the controller \\
$em = $this->getDoctrine()->getManager();
$transformer = new MarkdownTransformer($em);
// the service \\
private $em;
public function __construct(EntityManager $em)
{
$this->em = $em;
}
// services.yml \\
app.markdown_transformer:
class: AppBundle\Service\MarkdownTransformer
arguments: ['??']
UPDATE:
Autowiring services based on the types they implement is deprecated since Symfony 3.3 and won't be supported in version 4.0. Try changing the type-hint for argument "$em" of method "AppBundle\Service\MarkdownTransformer::__construct()" to one of its parents: interface "Doctrine\ORM\EntityManagerInterface", or interface "Doctrine\Common\Persistence\ObjectManager".
https://symfony.com/doc/cur...
Not sure what this all means though but it seems that there is a new way of registering your service.
Hey Marco Koopman
What you are doing it's ok, whenever your services depend on other services, you can inject them by type-hinting it's namespace, but if they implement an interface, it's better (and soon it will be obligatory) to type-hint the interface.
In Symfony 3.3 the way how you define your services changed, the class namespace is the service's name now, you can dive deeper by watching our dedicated tutorial for Symfony 3.3 - https://knpuniversity.com/s...
Have a nice day!
You said that service in the container is created only once, but in the `getApp_MarkdownTransformerService` function doesn't seem to check if the object was created before. How does container ensure that only one instance is created?
Hey boykodev
Great question!
If you look closely, that method `getApp_MarkdownTransformerService` is protected, so it gets called internally by the container, if you go to the Container class and check for "get()" method, you will see that it first checks if the service was already requested and if not, it will try to create an instance of it
Cheers!
Thanks for the clarification!
NP! you are welcome :)
Is there a reason why my phpStorm doesn't auto-suggest the $this->get() function [or even $this->container->get()] when I type? Seems like other auto-suggests are working fine but this guy isn't...
Thanks!
Hey Goz
Have you activated Symfony's plugin? If that's the case, you may need to exclude `var/cache` folder
Let me know if that doesn't work
Have a nice day
Hi MolloKhan - thanks for the tip but yeah, already activated the plugin and excluded that folder. Other auto-suggests work fine... just not $this->
$this only autosuggests functions present in the Controller file itself (listAction(), newAction() etc.)
Yo Goz !
Hmm, interesting! What class is your controller extending? I'm asking because starting in Symfony 3.4, there is the normal Controller class but also an AbstractController. Both are basically the same, but I thought I'd check in case it makes a difference.
Side note: in Symfony 4, we don't actually use
$this->get()anymore. Instead, we use autowiring to fetch services into our controller. So, this might be a temporary problem for you :). Check out https://knpuniversity.com/screencast/symfony-3.3/controller-di-cleanupCheers!
Hi weaverryan !
I'm using the exact starter code from the KNPU download zip for this course module, so I have to use their versions (by executiing `composer update` ) so it's symf 3.1.x.
I presumed that was the same version used when KNPU created the video above - so it's weird that I don't get the same autosuggests as they do, isn't it?
Hmm, it may be related to your PhpStorm version, which one are you using?
Oh, you can try re-indexing your project in PhpStorm
Latest version build of 2017.3
How does one re-index a project?
Open settings, then go to: languages & frameworks -> PHP -> Symfony
at the upper right corner is a button that says "Clear index", thats the one
Sometimes my auto completion gets broken and I have to run "composer install", maybe it could work for you
Cheers!
Thanks - tried that (and `composer install` - still no luck. Weird.
Weird indeed, I'm running out of options, do you have this same problem with other projects?
What about if you remove your project from PhpStorm and generate it again.
Also, you could try re-installing Symfony's plugin
I just cleared out my app folder and loaded the next KNPU coursework bundle and of course - now I have autosuggest working for $this->get() etc. ! I'll put this down to "I did something weird and now it's working" :)
Thanks for trying to help though - i appreciate it!
Ohh I hate when that happens, but I'm glad to know that you could fix your problem :)
Cheers!
Doesn't work in 3.3.6, fix code:
Hey Mike,
Thanks for sharing it! Btw, you probably missed it but we had added a note to a few tutorials explaining how to prevent getting this kind of errors when you are on Symfony 3.3 and newer: http://knpuniversity.com/bl... - I think it could be useful for others too.
Cheers!
When you look for all services in "debug:container markdown", you can find "markdown.parser" in the list of services. So why is it still necessary to register it in services.yml?
Hey Helene Shaikh!
I believe you are confusing "markdown.parser" service with our own service "app.markdown_transformer". Our service needs or depends on "markdown.parser", so that's why we are injecting it as an argument.
I hope it helps you clarifying things a bit :)
Have a nice day
Hello! i'm getting this error:
Type error: Argument 1 passed to
AppBundle\Service\MarkdownTransformer::__construct() must be an instance
of AppBundle\Service\MarkdownParserInterface, instance of
Knp\Bundle\MarkdownBundle\Parser\Preset\Max given, called in
C:\xampp\htdocs\Symfony\aqua_note\var\cache\dev\appDevDebugProjectContainer.php
on line 292
It's like it can't cast from Max instance given when called the contruct function to the MarkdownParserInterface even though Max implements MarkdownParserInterface... I don't understand why does it happen, it also happened in the previous page... I tried to solve it myself but it's just like you can't actually cast between those two...
If anyone could help I would really appreciate it. Thanks in advance!
Hey Jesus!
Oh man, I know this error! And it's *super* hard to debug the first time you see it.
First, the solution: you're missing the "use" statement in MarkdownTransformer for the MarkdownParserInterface.
Now, the explanation :). Because the "use" statement is missing, PHP assumes that MarkdownParserInterface must be a class that lives in the same namespace as the class that it's currently inside of. In other words, it assumes that the class is AppBundle\Service\MarkdownParserInterface. Then, the error "kind of" makes sense, it's saying:
> Hey! This object, which is an instance of Max, is being passed to __construct(), but you're expecting some (non-existent) MarkdownParserInterface instance!
Technically, you *really* want PHP to yell: "Yo! What is this MarkdownParserInterface!? That's not a real class?". But, it doesn't.
So easy fix, but I give it a long explanation because this is *such* a tough one to debug, and - hopefully - next time you'll debug it immediately.
I hope that helps! Or, if I'm *completely* wrong, you can tell me ;).
Cheers!
That was it!
Thank you so much for the detailed explanation, that really helps becoming a better programmer!
I'm really enjoying this tutorial and it's so awesome that we can count on you whenever there are errors!
Thank you again!
"Houston: no signs of life"
Start the conversation!