Change scope of methods, add some notes. Prep for refactoring.

This commit is contained in:
James Cole
2018-08-09 16:07:33 +02:00
parent 32e58d0a60
commit 7943164375
41 changed files with 189 additions and 147 deletions

View File

@@ -248,7 +248,7 @@ class DebugController extends Controller
*
* @return string
*/
protected function errorReporting(int $value): string
protected function errorReporting(int $value): string // get configuration
{
$array = [
-1 => 'ALL errors',
@@ -272,7 +272,7 @@ class DebugController extends Controller
*
* @return array
*/
private function collectPackages(): array
protected function collectPackages(): array // get configuration
{
$packages = [];
$file = \dirname(__DIR__, 3) . '/vendor/composer/installed.json';