Skip to content

Commit 0a71d92

Browse files
committed
fix return type
1 parent e3aef91 commit 0a71d92

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/App/Actions/Create_Model_Action.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,13 +81,13 @@ public function execute(Request $Request): Request_Response {
8181
$File_Builder->addMethods([
8282
[
8383
'name' => 'beforeSave',
84-
'return' => null,
84+
'return' => 'void',
8585
'body' => 'return;',
8686
'params' => [],
8787
],
8888
[
8989
'name' => 'afterSave',
90-
'return' => null,
90+
'return' => 'void',
9191
'body' => 'return;',
9292
'params' => [],
9393
],

0 commit comments

Comments
 (0)