Skip to content
Code-Schnipsel Gruppen Projekte
Bestätigt Commit 00b8de3e erstellt von Henning Leutz's avatar Henning Leutz :martial_arts_uniform:
Dateien durchsuchen

fix(Order): added missing user interface types for save methods

Übergeordneter 62a521f8
No related branches found
No related tags found
2 Merge Requests!132fix(Order): added missing user interface types for save methods,!117Update 'next-3.x' with latest changes from 'main'
Pipeline #12255 bestanden mit Phase
in 3 Minuten und 11 Sekunden
......@@ -638,10 +638,9 @@ class_exists('QUI\ERP\Accounting\Invoice\Invoice')
}
/**
* @param null|QUI\Interfaces\Users\User $PermissionUser
* @throws QUI\Exception
*/
public function update($PermissionUser = null): void
public function update(?User $PermissionUser = null): void
{
if ($PermissionUser === null) {
$PermissionUser = QUI::getUserBySession();
......@@ -787,10 +786,9 @@ public function update($PermissionUser = null): void
/**
* Alias for update()
*
* @param null $PermissionUser
* @throws QUI\Exception
*/
public function save($PermissionUser = null): void
public function save(?User $PermissionUser = null): void
{
$this->update($PermissionUser);
}
......
0% oder .
You are about to add 0 people to the discussion. Proceed with caution.
Bearbeitung dieser Nachricht zuerst beenden!
Bitte registrieren oder zum Kommentieren