| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 43 | public function setUp() |
||
| 44 | { |
||
| 45 | parent::setUp(); |
||
| 46 | |||
| 47 | $this->view = $this->app['view']; |
||
| 48 | $this->request = $this->app['request']; |
||
| 49 | $this->request->setSession($this->app['session.store']); |
||
| 50 | $this->validator = $this->app['validator']; |
||
| 51 | $this->htmlBuilder = new HtmlBuilder($this->app['url'], $this->view); |
||
| 52 | $this->formBuilder = new FormBuilder($this->htmlBuilder, $this->app['url'], $this->view, $this->request->session()->getToken()); |
||
| 53 | |||
| 54 | $this->gridHelper = new GridHelper($this->request, $this->validator, $this->view, $this->htmlBuilder, $this->formBuilder); |
||
| 55 | } |
||
| 56 | |||
| 62 |