Skip to content

Commit 3cd568a

Browse files
committed
docs: fix PHPDoc type mixed in Model
1 parent 9946f4d commit 3cd568a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

system/BaseModel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ abstract protected function doDelete($id = null, bool $purge = false);
416416
* through soft deletes (deleted = 1)
417417
* This methods works only with dbCalls
418418
*
419-
* @return bool|mixed
419+
* @return bool|string
420420
*/
421421
abstract protected function doPurgeDeleted();
422422

system/Model.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ protected function doDelete($id = null, bool $purge = false)
406406
* through soft deletes (deleted = 1)
407407
* This methods works only with dbCalls
408408
*
409-
* @return bool|mixed
409+
* @return bool|string
410410
*/
411411
protected function doPurgeDeleted()
412412
{

0 commit comments

Comments
 (0)