| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Code Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | public static function defaultConfig() |
||
| 25 | { |
||
| 26 | return [ |
||
| 27 | 'defaultGateway' => false, |
||
| 28 | 'routes' => [], |
||
| 29 | 'dns' => [], |
||
| 30 | 'useNat' => false, |
||
| 31 | 'twoFactor' => false, |
||
| 32 | 'clientToClient' => false, |
||
| 33 | 'listen' => '0.0.0.0', |
||
| 34 | 'enableLog' => false, |
||
| 35 | 'enableAcl' => false, |
||
| 36 | 'aclGroupList' => [], |
||
| 37 | 'blockSmb' => false, |
||
| 38 | 'forward6' => true, |
||
| 39 | ]; |
||
| 40 | } |
||
| 41 | |||
| 47 |
This check looks for access to properties that are not accessible from the current context.
If you need to make a property accessible to another context you can either raise its visibility level or provide an accessible getter in the defining class.