1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-12-23 23:02:08 +03:00

Maintenance: Addressed a range of deprecations

Updated deps to address deprecations fixed in newer Laravel framework
version.
This commit is contained in:
Dan Brown
2025-08-15 12:20:35 +01:00
parent 0311e3d2d7
commit 9443682ae4
5 changed files with 49 additions and 35 deletions

View File

@@ -2,6 +2,7 @@
namespace Database\Factories\Entities\Models;
use BookStack\Entities\Tools\PageEditorType;
use Illuminate\Database\Eloquent\Factories\Factory;
use Illuminate\Support\Str;
@@ -29,6 +30,7 @@ class PageFactory extends Factory
'html' => $html,
'text' => strip_tags($html),
'revision_count' => 1,
'editor' => 'wysiwyg',
];
}
}