]> BookStack Code Mirror - bookstack/blobdiff - app/Entities/Tools/BookSortMapItem.php
Added ability to escape role "External Auth ID" commas
[bookstack] / app / Entities / Tools / BookSortMapItem.php
index 6a2abc42298f018ba5909fb4478945348cc9fe56..f76d87f23669001369630bc7d588f91c1923e819 100644 (file)
@@ -2,11 +2,8 @@
 
 namespace BookStack\Entities\Tools;
 
-use BookStack\Entities\Models\BookChild;
-
 class BookSortMapItem
 {
-
     /**
      * @var int
      */
@@ -32,12 +29,6 @@ class BookSortMapItem
      */
     public $parentBookId;
 
-    /**
-     * @var ?BookChild
-     */
-    public $model = null;
-
-
     public function __construct(int $id, int $sort, ?int $parentChapterId, string $type, int $parentBookId)
     {
         $this->id = $id;
@@ -46,6 +37,4 @@ class BookSortMapItem
         $this->type = $type;
         $this->parentBookId = $parentBookId;
     }
-
-
-}
\ No newline at end of file
+}