| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 7 | 
| Code Lines | 4 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php namespace Anomaly\PreferencesModule\Preference\Listener;  | 
            ||
| 48 | public function handle()  | 
            ||
| 49 |     { | 
            ||
| 50 |         $this->config->set('app.debug', $this->preferences->value('streams::debug', $this->config->get('app.debug'))); | 
            ||
| 51 |         $this->config->set('app.timezone', $this->preferences->value('streams::timezone', $this->config->get('app.timezone'))); | 
            ||
| 52 | |||
| 53 |         $this->config->set('streams::system.per_page', $this->preferences->value('streams::per_page', 15)); | 
            ||
| 54 | }  | 
            ||
| 55 | }  | 
            ||
| 56 |