| Total Complexity | 2 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | trait ApplicationTrait |
||
| 21 | { |
||
| 22 | protected $application; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Get application object |
||
| 26 | * |
||
| 27 | * @return Application |
||
| 28 | */ |
||
| 29 | 2 | public function getApplication() |
|
| 30 | { |
||
| 31 | 2 | return $this->application; |
|
| 32 | } |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Set application |
||
| 36 | * |
||
| 37 | * @param Application $application |
||
| 38 | * |
||
| 39 | * @return $this |
||
| 40 | */ |
||
| 41 | 2 | public function setApplication(Application $application) |
|
| 46 | } |
||
| 47 | } |
||
| 48 |