Advertisement
kutny

Symfony2 article: AOP wiring

May 23rd, 2013
316
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.39 KB | None | 0 0
  1. services:
  2.     layout_filler.front:
  3.         class: FrontLayoutFiller
  4.  
  5.     layout_filler_interceptor:
  6.         class: LayoutFillerInterceptor
  7.         arguments: [@annotation_reader, @service_container]
  8.  
  9.     layout_filler_pointcut:
  10.         class: LayoutFillerPointcut
  11.     arguments: [@annotation_reader]
  12.         tags:
  13.             - {name: jms_aop.pointcut, interceptor: layout_filler_interceptor}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement