| 1 | <?php |
||
| 12 | class SettingsController extends Controller { |
||
| 13 | |||
| 14 | /** @var ConfigService */ |
||
| 15 | private $configService; |
||
| 16 | |||
| 17 | /** @var MiscService */ |
||
| 18 | private $miscService; |
||
| 19 | |||
| 20 | public function __construct( |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @NoCSRFRequired |
||
| 30 | */ |
||
| 31 | public function admin() { |
||
| 34 | |||
| 35 | |||
| 36 | public function getSettings() { |
||
| 45 | |||
| 46 | |||
| 47 | public function setSettings($allow_federated_circles) { |
||
| 54 | } |
This check marks parameter names that have not been written in camelCase.
In camelCase names are written without any punctuation, the start of each new word being marked by a capital letter. Thus the name database connection string becomes
databaseConnectionString.