BookStack\Services\PermissionService::__construct PHP Метод

__construct() публичный Метод

PermissionService constructor.
public __construct ( JointPermission $jointPermission, Book $book, Chapter $chapter, Page $page, Role $role )
$jointPermission BookStack\JointPermission
$book BookStack\Book
$chapter BookStack\Chapter
$page BookStack\Page
$role BookStack\Role
    public function __construct(JointPermission $jointPermission, Book $book, Chapter $chapter, Page $page, Role $role)
    {
        $this->jointPermission = $jointPermission;
        $this->role = $role;
        $this->book = $book;
        $this->chapter = $chapter;
        $this->page = $page;
    }