1 | <?php |
||
10 | class SettingsController extends Controller |
||
11 | { |
||
12 | /** |
||
13 | * @var VersionInfoService |
||
14 | */ |
||
15 | private $versionInfoService; |
||
16 | |||
17 | /** |
||
18 | * SettingController constructor. |
||
19 | * |
||
20 | * @param VersionInfoService $versionInfoService |
||
21 | */ |
||
22 | public function __construct(VersionInfoService $versionInfoService) |
||
26 | |||
27 | /** |
||
28 | * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View |
||
29 | */ |
||
30 | public function index() |
||
43 | |||
44 | /** |
||
45 | * @param SettingsRequest $request |
||
46 | * |
||
47 | * @return \Illuminate\Http\RedirectResponse |
||
48 | */ |
||
49 | public function update(SettingsRequest $request) |
||
62 | } |
||
63 |
An attempt at access to an undefined property has been detected. This may either be a typographical error or the property has been renamed but there are still references to its old name.
If you really want to allow access to undefined properties, you can define magic methods to allow access. See the php core documentation on Overloading.