diff --git a/module/schools/src/Action/Software/PersistSoftware.php b/module/schools/src/Action/Software/PersistSoftware.php index f07a02bf38cf7bfc3cb29faa96a3f070eea114b7..ca10a399a9cd147aba1890fc5823eae2b021cccc 100644 --- a/module/schools/src/Action/Software/PersistSoftware.php +++ b/module/schools/src/Action/Software/PersistSoftware.php @@ -25,7 +25,7 @@ class PersistSoftware public function __construct(SoftwareServiceInterface $softwareService) { - $this->softwareService = $softwrareService; + $this->softwareService = $softwareService; } public function __invoke(Request $req, Response $res, array $args = []) @@ -38,7 +38,7 @@ class PersistSoftware $params['school_id'] = $school->id; $id = $params['id']; unset($params['id']); - + error_log(print_r($this->softwareService, TRUE)); try { if ($id) { $software= $this->softwareService->updateSoftware($params, $id);