File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ As configured, the following property is used by the marking store::
176176With this workflow named ``blog_publishing ``, you can get help to decide
177177what actions are allowed on a blog post::
178178
179- $post = new \ AppBundle\Entity\BlogPost();
179+ $post = new AppBundle\Entity\BlogPost();
180180
181181 $workflow = $this->container->get('workflow.blog_publishing');
182182 $workflow->can($post, 'publish'); // False
@@ -339,7 +339,7 @@ See example to make sure no blog post without title is moved to "review"::
339339 {
340340 public function guardReview(GuardEvent $event)
341341 {
342- /** @var \ AppBundle\Entity\BlogPost $post */
342+ /** @var AppBundle\Entity\BlogPost $post */
343343 $post = $event->getSubject();
344344 $title = $post->title;
345345
You can’t perform that action at this time.
0 commit comments