Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php namespace Anomaly\PreferencesModule\Http\Controller\Admin; |
||
24 | public function edit(PreferenceFormBuilder $form, Authorizer $authorizer) |
||
25 | { |
||
26 | if (!$authorizer->authorize('anomaly.module.preferences::preferences.write')) { |
||
27 | abort(403); |
||
28 | } |
||
29 | |||
30 | return $form->render('streams'); |
||
31 | } |
||
32 | } |
||
33 |