]> BookStack Code Mirror - bookstack/blobdiff - app/Book.php
Change application namespace to BookStack
[bookstack] / app / Book.php
index c6e5f60a74052e8cfca9d6ab05fce37dfdd428b8..66ac883ef366b1509645f1efda93cc10ec2f2a2b 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-namespace Oxbow;
+namespace BookStack;
 
 class Book extends Entity
 {
@@ -19,12 +19,12 @@ class Book extends Entity
 
     public function pages()
     {
-        return $this->hasMany('Oxbow\Page');
+        return $this->hasMany('BookStack\Page');
     }
 
     public function chapters()
     {
-        return $this->hasMany('Oxbow\Chapter');
+        return $this->hasMany('BookStack\Chapter');
     }
 
     public function children()